require-coercible-to-string-x
Requires an argument is corecible then converts using ToString.
Version: 1.0.2
Author: Xotic750 [email protected]
License: MIT
Copyright: Xotic750
module.exports(value)
⇒ string
⏏
This method requires an argument is corecible then converts using ToString.
Kind: Exported function
Returns: string
- The value as a string.
Throws:
TypeError
If value is null or undefined.
Param | Type | Description |
---|---|---|
value | * |
The value to converted to a string. |
Example
import requireCoercibleToString from 'require-coercible-to-string-x';
requireCoercibleToString(); // TypeError
requireCoercibleToString(null); // TypeError
requireCoercibleToString(Symbol('')); // TypeError
requireCoercibleToString(Object.create(null)); // TypeError
console.log(requireCoercibleToString(1)); // '1'
console.log(requireCoercibleToString(true)); // 'true'