Package Exports
- safe-to-string-x
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (safe-to-string-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
safe-to-string-x
ES6 safeToString module. Converts a Symbol
to #<Symbol>
instead of
throwing.
Version: 1.0.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750
module.exports(value)
⇒ string
⏏
Performs no operation but returns a constant undefined
inherently.
Kind: Exported function
Returns: string
- The converted value.
Param | Type | Description |
---|---|---|
value | * |
The value to convert to a string. |
Example
var safeToString = require('safe-to-string-x');
safeToString(); // 'undefined'
safeToString(null); // 'null'
safeToString('abc'); // 'abc'
safeToString(true); // 'true'
safeToString(Symbol.iterator); // '#<Symbol>'