JSPM

jsmicro-is-object

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q23869F
  • License MIT

Check does the given Javascript Object is an object.

Package Exports

  • jsmicro-is-object

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jsmicro-is-object) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

JSMicro - Is Object

isObject(object)

Check does the given Javascript Object (array, object, string, etc) is an object.

isNotObject(object)

Check does the given Javascript Object (array, object, string, etc) is not an object.

Browser Usage

bower install --save jsmicro-is-object
<script type="text/javascript" src="bower_components/jsmicro-is-object/index.js">
<script type="text/javascript">
    var obj = {};
    var nbr = 200;

    // Available in the window object.
    isObject(obj);      // true
    isObject(nbr);      // false
    isNotObject(nbr);   // true
</script>

NodeJS Usage

npm install --save jsmicro-is-object
const obj = require('jsmicro-is-object');

// Available in the global object.
isObject({}); // true
isObject(23322333); // false
isNotObject(23234); // true

// Also available in the export object.
obj.isObject({}); // true
obj.isObject(23322333); // false
obj.isNotObject(23333); // true

Changelogs

v1.0.1 - May 21, 2016

  • Added .npmignore

v1.0.0 - May 19, 2016

  • Initial release.

The MIT License (MIT)