blob: 12548fa4f483444bfad3e5c5ecdc2f4be29af2e4 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var $DateValueOf = require('call-bind/callBound')('Date.prototype.valueOf');
4
5// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-date-prototype-object
6
7module.exports = function thisTimeValue(value) {
8 return $DateValueOf(value);
9};