1.0.4 • Published 11 years ago

validate.io-object v1.0.4

Weekly downloads
6,313
License
MIT
Repository
github
Last release
11 years ago

Object

NPM version Build Status Coverage Dependencies

Validates if a value is a JavaScript object.

Installation

$ npm install validate.io-object

For use in the browser, use browserify.

Usage

var isObject = require( 'validate.io-object' );

isObject( value )

Validates if a value is a JavaScript object.

var value = {};

var bool = isObject( value );
// returns true

Note: in this implementation, arrays and null are not considered valid objects.

Examples

console.log( isObject( {} ) );
// returns true

console.log( isObject( null ) );
// returns false

console.log( isObject( [] ) );
// returns false

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.

Copyright

Copyright © 2014-2015. Athan Reines.

@everything-registry/sub-chunk-3040wikipedia-anagramswandbox-apiwandbox-api-updatedsparqling-startext-minertex-equation-to-svgjestanissuemake-latexmarkdown-to-restructuredtextabhijithvijayan-portfolioargv-to-objectapp-etcapp-etc-configapi-wandboxenv-to-objecteval-serializeflow-mapflow-read-arrayflow-to-geckoboardflow-to-stringflow-tostringflow-from-arrayflow-from-stringflow-appendfind-user-app-configchunk-string-arraycompute-zeroscompute-zipconcept-netcompute-betalncompute-chunkifycompute-covariancecompute-cprodcompute-abscompute-addcompute-anagram-hashcompute-datespacecompute-digammacompute-dividecompute-eqcompute-erfcompute-erfccompute-erfcinvcompute-erfinvcompute-filledcompute-findcompute-flattencompute-fliplrcompute-flipudcompute-gammainccompute-gammaincinvcompute-geqcompute-gtcompute-idrcompute-incrdatespacecompute-infcompute-iqrcompute-leqcompute-midsummarycompute-minkowski-distancecompute-mmeancompute-msumcompute-nanmediancompute-nanscompute-neqcompute-onescompute-polynomialcompute-prodcompute-qmeancompute-quantilecompute-quantilescompute-reversecompute-rot90compute-signumcompute-transposecompute-trimeancompute-truncmeancompute-tversky-indexcompute-sqrtcompute-subtractcompute-sumcompute-to-matrixcompute-typed-array-functioncompute-variancecompute-ltcompute-matrix-functioncompute-meancompute-mediancompute-midhingecompute-nanquantilescreate-remote-repobig-berthadistributions-beta-pdfdistributions-binomial-mgfdistributions-cauchy-cdfdistributions-cauchy-pdfdistributions-cauchy-quantiledistributions-exponential-mediandistributions-exponential-mgf
1.0.4

11 years ago

1.0.3

11 years ago

1.0.2

11 years ago

1.0.1

11 years ago

1.0.0

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago