ohctechv3/.svn/pristine/79/79f9b7f941cae111773661c841f9e3e4a3f9fa20.svn-base
2024-10-28 15:03:36 +05:30

10 lines
262 B
Plaintext

'use strict';
var $DateGetTime = require('call-bind/callBound')('Date.prototype.getTime');
// https://262.ecma-international.org/6.0/#sec-properties-of-the-date-prototype-object
module.exports = function thisTimeValue(value) {
return $DateGetTime(value);
};