mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-29 07:25:05 +08:00
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
var toPrimitive = require('es-to-primitive/es2015');
|
||
|
|
|
||
|
|
// https://262.ecma-international.org/6.0/#sec-toprimitive
|
||
|
|
|
||
|
|
module.exports = function ToPrimitive(input) {
|
||
|
|
if (arguments.length > 1) {
|
||
|
|
return toPrimitive(input, arguments[1]);
|
||
|
|
}
|
||
|
|
return toPrimitive(input);
|
||
|
|
};
|