summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/is-decimal/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/is-decimal/readme.md')
-rw-r--r--tools/eslint/node_modules/is-decimal/readme.md58
1 files changed, 58 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/is-decimal/readme.md b/tools/eslint/node_modules/is-decimal/readme.md
new file mode 100644
index 0000000000..58d25c26bc
--- /dev/null
+++ b/tools/eslint/node_modules/is-decimal/readme.md
@@ -0,0 +1,58 @@
+# is-decimal [![Build Status][travis-badge]][travis] [![Coverage Status][codecov-badge]][codecov]
+
+<!--lint disable heading-increment list-item-spacing-->
+
+Check if a character is decimal.
+
+## Installation
+
+[npm][npm-install]:
+
+```bash
+npm install is-decimal
+```
+
+## Usage
+
+Dependencies:
+
+```javascript
+var decimal = require('is-decimal');
+
+decimal('0'); // true
+decimal('9'); // true
+decimal('a'); // false
+decimal('💩'); // false
+```
+
+## API
+
+### `decimal(character)`
+
+Check whether the given character code (`number`), or the character
+code at the first position (`string`), is decimal.
+
+## Related
+
+* [`is-alphabetical`](https://github.com/wooorm/is-alphabetical)
+* [`is-hexadecimal`](https://github.com/wooorm/is-hexadecimal)
+
+## License
+
+[MIT][license] © [Titus Wormer][author]
+
+<!-- Definitions -->
+
+[travis-badge]: https://img.shields.io/travis/wooorm/is-decimal.svg
+
+[travis]: https://travis-ci.org/wooorm/is-decimal
+
+[codecov-badge]: https://img.shields.io/codecov/c/github/wooorm/is-decimal.svg
+
+[codecov]: https://codecov.io/github/wooorm/is-decimal
+
+[npm-install]: https://docs.npmjs.com/cli/install
+
+[license]: LICENSE
+
+[author]: http://wooorm.com