Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9314432
date-to-primitive.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
489 B
Subscribers
None
date-to-primitive.js
View Options
'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
Details
Attached
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
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment