1.9 KiB
1.9 KiB
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:
TypeErrorIfvalueis 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