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