copy.js 126 B

1234567
  1. "use strict";
  2. var getTime = Date.prototype.getTime;
  3. module.exports = function () {
  4. return new Date(getTime.call(this));
  5. };