copy.js 126B

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