lix-website/themes/lix/assets/bootstrap/node_modules/es-abstract/2023/ToPrimitive.js

13 lines
282 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
'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);
};