require-coercible-to-string-x

Requires an argument is corecible then converts using ToString.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
require-coercible-to-string-x
2.1.14 years ago6 years agoMinified + gzip package size for require-coercible-to-string-x in KB

Readme

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

require-coercible-to-string-x

Requires an argument is corecible then converts using ToString.
Version: 1.0.2
Author: Xotic750
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'