2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-27 00:58:31 +00:00
2017-07-31 15:51:51 +05:30
..
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30

is-primitive NPM version Build Status

Returns true if the value is a primitive.

Install with npm

npm i is-primitive --save

Running tests

Install dev dependencies.

npm i -d && npm test

Usage

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

License

Copyright (c) 2014-2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb-cli on March 16, 2015.