webhook/node_modules/es-abstract/2016/thisTimeValue.js

10 lines
267 B
JavaScript
Raw Normal View History

'use strict';
2022-11-10 11:43:16 +01:00
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) {
2022-11-10 11:43:16 +01:00
return $DateGetTime(value);
};