WIP - add extractor, generate snippet_data
This commit is contained in:
40
node_modules/is-alphanumeric/readme.md
generated
vendored
Normal file
40
node_modules/is-alphanumeric/readme.md
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
# is-alphanumeric [](https://travis-ci.org/arthurvr/is-alphanumeric)
|
||||
|
||||
> Check if a string only contains alphanumeric characters
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save is-alphanumeric
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var isAlphanumeric = require('is-alphanumeric');
|
||||
|
||||
isAlphanumeric('unicorns');
|
||||
//=> true
|
||||
|
||||
isAlphanumeric('55');
|
||||
//=> true
|
||||
|
||||
isAlphanumeric('ABC');
|
||||
//=> true
|
||||
|
||||
isAlphanumeric('*unicorns');
|
||||
//=> false
|
||||
|
||||
isAlphanumeric('{unicorns}');
|
||||
//=> false
|
||||
|
||||
isAlphanumeric(' ');
|
||||
//=> false
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Arthur Verschaeve](http://arthurverschaeve.be)
|
||||
Reference in New Issue
Block a user