@stdlib/symbol-to-primitive
Symbol which specifies a method for converting an object to a primitive value.
Last updated 2 months ago by stdlib-bot .
Apache-2.0 · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @stdlib/symbol-to-primitive 
SYNC missed versions from official npm registry.
<summary> About stdlib... </summary>

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!

ToPrimitiveSymbol

NPM version Build Status Coverage Status

Symbol which specifies a method for converting an object to a primitive value.

Installation

npm install @stdlib/symbol-to-primitive

Usage

var ToPrimitiveSymbol = require( '@stdlib/symbol-to-primitive' );

ToPrimitiveSymbol

Symbol which specifies a method for converting an object to a primitive value.

var s = typeof ToPrimitiveSymbol;
// e.g., returns 'symbol'

Notes

  • 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.

    • If the hint is 'number', the method should return a number.
    • If the hint is 'string', the method should return a string.
    • If the hint is '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.

Examples

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

Notice

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.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2026. The Stdlib Authors.

Current Tags

  • 0.1.2                                ...           latest (2 months ago)

3 Versions

  • 0.1.2                                ...           2 months ago
  • 0.1.1                                ...           2 months ago
  • 0.1.0                                ...           2 months ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dev Dependencies (0)
None

Copyright 2013 - present © cnpmjs.org | Home |