![JAR search and dependency download from the Maven repository](/logo.png)
package.2022.ToPrimitive.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-abstract Show documentation
Show all versions of es-abstract Show documentation
ECMAScript spec abstract operations.
'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);
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy