Page MenuHomeSoftware Heritage

date-to-primitive.js
No OneTemporary

date-to-primitive.js

'use strict';
var anObject = require('../internals/an-object');
var ordinaryToPrimitive = require('../internals/ordinary-to-primitive');
// `Date.prototype[@@toPrimitive](hint)` method implementation
// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive
module.exports = function (hint) {
anObject(this);
if (hint === 'string' || hint === 'default') hint = 'string';
else if (hint !== 'number') throw TypeError('Incorrect hint');
return ordinaryToPrimitive(this, hint);
};

File Metadata

Mime Type
text/plain
Expires
Thu, Jul 3, 12:28 PM (2 d, 4 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3321026

Event Timeline