index.js 288 B

123456789101112131415
  1. export default (function (o, c) {
  2. var proto = c.prototype;
  3. proto.toObject = function () {
  4. return {
  5. years: this.$y,
  6. months: this.$M,
  7. date: this.$D,
  8. hours: this.$H,
  9. minutes: this.$m,
  10. seconds: this.$s,
  11. milliseconds: this.$ms
  12. };
  13. };
  14. });