mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:29:30 +08:00
9 lines
267 B
Text
9 lines
267 B
Text
'use strict';
|
|
|
|
var $DateGetTime = require('call-bind/callBound')('Date.prototype.getTime');
|
|
|
|
// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-date-prototype-object
|
|
|
|
module.exports = function thisTimeValue(value) {
|
|
return $DateGetTime(value);
|
|
};
|