Symbol

Symbol namespace.

Usage

var ns = require( '@stdlib/symbol' );

ns

Symbol namespace.

var o = ns;
// returns {...}

The namespace contains the following:

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/symbol' );

console.log( objectKeys( ns ) );
Did you find this page helpful?