$ cnpm install @stdlib/symbol-to-primitive
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Symbol which specifies a method for converting an object to a primitive value.
npm install @stdlib/symbol-to-primitive
var ToPrimitiveSymbol = require( '@stdlib/symbol-to-primitive' );
Symbol which specifies a method for converting an object to a primitive value.
var s = typeof ToPrimitiveSymbol;
// e.g., returns 'symbol'
The symbol is only supported in environments which support symbols. In non-supporting environments, the value is null.
When an object needs to be converted to a primitive value, JavaScript runtimes look for a [ToPrimitiveSymbol]() method on the object. If the method exists, JavaScript runtimes call the method with a hint string argument (one of 'number', 'string', or 'default') indicating the preferred type of the primitive value to be returned.
'number', the method should return a number.'string', the method should return a string.'default', the method can return either a number or a string.If an object does not have a [ToPrimitiveSymbol]() method, JavaScript runtimes use the default type conversion algorithm by calling valueOf() and/or toString() methods.
var defineProperty = require( '@stdlib/utils-define-property' );
var Number = require( '@stdlib/number-ctor' );
var ToPrimitiveSymbol = require( '@stdlib/symbol-to-primitive' );
function CustomObject( value ) {
if ( !(this instanceof CustomObject) ) {
return new CustomObject( value );
}
this._value = value;
return this;
}
function toPrimitive( hint ) {
var value = this._value;
if ( hint === 'string' ) {
return 'CustomObject: ' + value;
}
if ( hint === 'number' ) {
return value;
}
// Default hint:
return value;
}
defineProperty( CustomObject.prototype, ToPrimitiveSymbol, {
'configurable': false,
'enumerable': false,
'writable': false,
'value': toPrimitive
});
var obj = new CustomObject( 42 );
console.log( String( obj ) );
// => 'CustomObject: 42'
console.log( Number( obj ) );
// => 42
console.log( obj + 10 );
// => 52
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2026. The Stdlib Authors.
Copyright 2013 - present © cnpmjs.org | Home |