mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 04:10:04 +02:00
add some packages
This commit is contained in:
57
node_modules/is-primitive/README.md
generated
vendored
Normal file
57
node_modules/is-primitive/README.md
generated
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# is-primitive [](http://badge.fury.io/js/is-primitive) [](https://travis-ci.org/jonschlinkert/is-primitive)
|
||||
|
||||
> Returns `true` if the value is a primitive.
|
||||
|
||||
## Install with [npm](npmjs.org)
|
||||
|
||||
```bash
|
||||
npm i is-primitive --save
|
||||
```
|
||||
|
||||
## Running tests
|
||||
Install dev dependencies.
|
||||
|
||||
```bash
|
||||
npm i -d && npm test
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var isPrimitive = require('is-primitive');
|
||||
isPrimitive('abc');
|
||||
//=> true
|
||||
|
||||
isPrimitive(42);
|
||||
//=> true
|
||||
|
||||
isPrimitive(false);
|
||||
//=> true
|
||||
|
||||
isPrimitive(true);
|
||||
//=> true
|
||||
|
||||
isPrimitive({});
|
||||
//=> false
|
||||
|
||||
isPrimitive([]);
|
||||
//=> false
|
||||
|
||||
isPrimitive(function(){});
|
||||
//=> false
|
||||
```
|
||||
|
||||
## Author
|
||||
|
||||
**Jon Schlinkert**
|
||||
|
||||
+ [github/jonschlinkert](https://github.com/jonschlinkert)
|
||||
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
|
||||
|
||||
## License
|
||||
Copyright (c) 2014-2015 Jon Schlinkert
|
||||
Released under the MIT license
|
||||
|
||||
***
|
||||
|
||||
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on March 16, 2015._
|
Reference in New Issue
Block a user