Show More
Commit Description:
move datatable to yarn
Commit Description:
move datatable to yarn
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/_date-to-primitive.js
| 9 lines
| 317 B
| application/javascript
| JavascriptLexer
|
r789 | 'use strict'; | |||
var anObject = require('./_an-object'); | ||||
var toPrimitive = require('./_to-primitive'); | ||||
var NUMBER = 'number'; | ||||
module.exports = function (hint) { | ||||
if (hint !== 'string' && hint !== NUMBER && hint !== 'default') throw TypeError('Incorrect hint'); | ||||
return toPrimitive(anObject(this), hint != NUMBER); | ||||
}; | ||||