webhook-action/node_modules/es-abstract/2018/thisTimeValue.js

10 lines
262 B
JavaScript
Raw Normal View History

'use strict';
2022-11-10 10:43:16 +00:00
var $DateGetTime = require('call-bind/callBound')('Date.prototype.getTime');
2024-03-28 02:00:41 +00:00
// https://262.ecma-international.org/6.0/#sec-properties-of-the-date-prototype-object
module.exports = function thisTimeValue(value) {
2022-11-10 10:43:16 +00:00
return $DateGetTime(value);
};