first commit
This commit is contained in:
21
build/node_modules/validate.io-undefined/LICENSE
generated
vendored
Normal file
21
build/node_modules/validate.io-undefined/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Athan Reines.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
110
build/node_modules/validate.io-undefined/README.md
generated
vendored
Normal file
110
build/node_modules/validate.io-undefined/README.md
generated
vendored
Normal file
@@ -0,0 +1,110 @@
|
||||
undefined
|
||||
===
|
||||
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Dependencies][dependencies-image]][dependencies-url]
|
||||
|
||||
> Validates if a value is undefined.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
``` bash
|
||||
$ npm install validate.io-undefined
|
||||
```
|
||||
|
||||
For use in the browser, use [browserify](https://github.com/substack/node-browserify).
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
``` javascript
|
||||
var isUndefined = require( 'validate.io-undefined' );
|
||||
```
|
||||
|
||||
#### isUndefined( value )
|
||||
|
||||
Validates if a `value` is `undefined`.
|
||||
|
||||
``` javascript
|
||||
var value;
|
||||
|
||||
var bool = isUndefined( value );
|
||||
// returns true
|
||||
```
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
``` javascript
|
||||
var isUndefined = require( 'validate.io-undefined' );
|
||||
|
||||
console.log( isUndefined( undefined ) );
|
||||
// returns true
|
||||
|
||||
console.log( isUndefined( null ) );
|
||||
// returns false
|
||||
```
|
||||
|
||||
|
||||
To run the example code from the top-level application directory,
|
||||
|
||||
``` bash
|
||||
$ node ./examples/index.js
|
||||
```
|
||||
|
||||
|
||||
## Tests
|
||||
|
||||
### Unit
|
||||
|
||||
Unit tests use the [Mocha](http://mochajs.org) test framework with [Chai](http://chaijs.com) assertions. To run the tests, execute the following command in the top-level application directory:
|
||||
|
||||
``` bash
|
||||
$ make test
|
||||
```
|
||||
|
||||
All new feature development should have corresponding unit tests to validate correct functionality.
|
||||
|
||||
|
||||
### Test Coverage
|
||||
|
||||
This repository uses [Istanbul](https://github.com/gotwarlost/istanbul) as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
|
||||
|
||||
``` bash
|
||||
$ make test-cov
|
||||
```
|
||||
|
||||
Istanbul creates a `./reports/coverage` directory. To access an HTML version of the report,
|
||||
|
||||
``` bash
|
||||
$ make view-cov
|
||||
```
|
||||
|
||||
|
||||
---
|
||||
## License
|
||||
|
||||
[MIT license](http://opensource.org/licenses/MIT).
|
||||
|
||||
|
||||
## Copyright
|
||||
|
||||
Copyright © 2014. Athan Reines.
|
||||
|
||||
|
||||
[npm-image]: http://img.shields.io/npm/v/validate.io-undefined.svg
|
||||
[npm-url]: https://npmjs.org/package/validate.io-undefined
|
||||
|
||||
[travis-image]: http://img.shields.io/travis/validate-io/undefined/master.svg
|
||||
[travis-url]: https://travis-ci.org/validate-io/undefined
|
||||
|
||||
[coveralls-image]: https://img.shields.io/coveralls/validate-io/undefined/master.svg
|
||||
[coveralls-url]: https://coveralls.io/r/validate-io/undefined?branch=master
|
||||
|
||||
[dependencies-image]: http://img.shields.io/david/validate-io/undefined.svg
|
||||
[dependencies-url]: https://david-dm.org/validate-io/undefined
|
||||
|
||||
[dev-dependencies-image]: http://img.shields.io/david/dev/validate-io/undefined.svg
|
||||
[dev-dependencies-url]: https://david-dm.org/dev/validate-io/undefined
|
||||
|
||||
[github-issues-image]: http://img.shields.io/github/issues/validate-io/undefined.svg
|
||||
[github-issues-url]: https://github.com/validate-io/undefined/issues
|
||||
45
build/node_modules/validate.io-undefined/lib/index.js
generated
vendored
Normal file
45
build/node_modules/validate.io-undefined/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
/**
|
||||
*
|
||||
* VALIDATE: undefined
|
||||
*
|
||||
*
|
||||
* DESCRIPTION:
|
||||
* - Validates if a value is undefined.
|
||||
*
|
||||
*
|
||||
* NOTES:
|
||||
* [1]
|
||||
*
|
||||
*
|
||||
* TODO:
|
||||
* [1]
|
||||
*
|
||||
*
|
||||
* LICENSE:
|
||||
* MIT
|
||||
*
|
||||
* Copyright (c) 2014. Athan Reines.
|
||||
*
|
||||
*
|
||||
* AUTHOR:
|
||||
* Athan Reines. kgryte@gmail.com. 2014.
|
||||
*
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* FUNCTION: isUndefined( value )
|
||||
* Validates if a value is undefined.
|
||||
*
|
||||
* @param {*} value - value to be validated
|
||||
* @returns {Boolean} boolean indicating whether value is undefined
|
||||
*/
|
||||
function isUndefined( value ) {
|
||||
return value === void 0;
|
||||
} // end FUNCTION isUndefined()
|
||||
|
||||
|
||||
// EXPORTS //
|
||||
|
||||
module.exports = isUndefined;
|
||||
84
build/node_modules/validate.io-undefined/package.json
generated
vendored
Normal file
84
build/node_modules/validate.io-undefined/package.json
generated
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"_from": "validate.io-undefined@^1.0.3",
|
||||
"_id": "validate.io-undefined@1.0.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-fif8uzFbhB54JDQxiXZxkp4gt/Q=",
|
||||
"_location": "/validate.io-undefined",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "validate.io-undefined@^1.0.3",
|
||||
"name": "validate.io-undefined",
|
||||
"escapedName": "validate.io-undefined",
|
||||
"rawSpec": "^1.0.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/is-nil-x",
|
||||
"/to-primitive-x",
|
||||
"/to-string-tag-x"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/validate.io-undefined/-/validate.io-undefined-1.0.3.tgz",
|
||||
"_shasum": "7e27fcbb315b841e78243431897671929e20b7f4",
|
||||
"_spec": "validate.io-undefined@^1.0.3",
|
||||
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build/node_modules/is-nil-x",
|
||||
"author": {
|
||||
"name": "Athan Reines",
|
||||
"email": "kgryte@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/validate-io/undefined/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Athan Reines",
|
||||
"email": "kgryte@gmail.com"
|
||||
}
|
||||
],
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "Validates if a value is undefined.",
|
||||
"devDependencies": {
|
||||
"chai": "1.x.x",
|
||||
"coveralls": "^2.11.1",
|
||||
"istanbul": "^0.3.0",
|
||||
"jshint": "^2.5.10",
|
||||
"jshint-stylish": "^1.0.0",
|
||||
"mocha": "1.x.x"
|
||||
},
|
||||
"homepage": "https://github.com/validate-io/undefined#readme",
|
||||
"keywords": [
|
||||
"validate.io",
|
||||
"validate",
|
||||
"validation",
|
||||
"validator",
|
||||
"undefined",
|
||||
"void",
|
||||
"is",
|
||||
"type",
|
||||
"check",
|
||||
"isundefined",
|
||||
"valid"
|
||||
],
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://www.opensource.org/licenses/MIT"
|
||||
}
|
||||
],
|
||||
"main": "./lib",
|
||||
"name": "validate.io-undefined",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/validate-io/undefined.git"
|
||||
},
|
||||
"scripts": {
|
||||
"coveralls": "istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls",
|
||||
"test": "mocha",
|
||||
"test-cov": "istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec"
|
||||
},
|
||||
"version": "1.0.3"
|
||||
}
|
||||
Reference in New Issue
Block a user