版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
288 B

  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. });