Files
asciidisco.com/build/node_modules/to-string-x/README.md
2023-08-01 13:49:46 +02:00

1.9 KiB

Travis status Dependency status devDependency status npm version

to-string-x

ES6-compliant shim for ToString.

See: 7.1.12 ToString ( argument )
Version: 1.4.2
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

module.exports(value)string

The abstract operation ToString converts argument to a value of type String.

Kind: Exported function
Returns: string - The converted value.
Throws:

  • TypeError If value is a Symbol.
Param Type Description
value * The value to convert to a string.

Example

var $toString = require('to-string-x');

$toString(); // 'undefined'
$toString(null); // 'null'
$toString('abc'); // 'abc'
$toString(true); // 'true'
$toString(Symbol('foo')); // TypeError
$toString(Symbol.iterator); // TypeError
$toString(Object(Symbol.iterator)); // TypeError
$toString(Object.create(null)); // TypeError