{"_id":"simple-is","_rev":"82701","name":"simple-is","description":"maximally minimal type-testing library","dist-tags":{"latest":"0.2.0"},"maintainers":[{"name":"olov","email":"olov.lassus@gmail.com"}],"time":{"modified":"2021-06-03T10:26:21.000Z","created":"2013-04-19T11:16:47.845Z","0.2.0":"2013-04-21T10:46:51.962Z","0.1.0":"2013-04-19T11:16:47.845Z"},"users":{},"author":{"name":"Olov Lassus","email":"olov.lassus@gmail.com"},"repository":{"type":"git","url":"https://github.com/olov/simple-is.git"},"versions":{"0.2.0":{"name":"simple-is","version":"0.2.0","description":"maximally minimal type-testing library","main":"simple-is.js","repository":{"type":"git","url":"https://github.com/olov/simple-is.git"},"keywords":["is","type","test","check","assert"],"scripts":{"test":"tap test/*.js"},"devDependencies":{"tap":"~0.4.0"},"author":{"name":"Olov Lassus","email":"olov.lassus@gmail.com"},"license":"MIT","readmeFilename":"README.md","_id":"simple-is@0.2.0","dist":{"shasum":"2abb75aade39deb5cc815ce10e6191164850baf0","size":2462,"noattachment":false,"key":"/simple-is/-/simple-is-0.2.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/simple-is/download/simple-is-0.2.0.tgz"},"_resolved":"/tmp/simple-is.tgz","_from":"/tmp/simple-is.tgz","_npmVersion":"1.2.18","_npmUser":{"name":"olov","email":"olov.lassus@gmail.com"},"maintainers":[{"name":"olov","email":"olov.lassus@gmail.com"}],"directories":{},"publish_time":1366541211962,"_cnpm_publish_time":1366541211962,"_hasShrinkwrap":false},"0.1.0":{"name":"simple-is","version":"0.1.0","description":"maximally minimal type-testing library","main":"simple-is.js","repository":{"type":"git","url":"https://github.com/olov/simple-is.git"},"keywords":["is","type","test","check","assert"],"scripts":{"test":"tap test/*.js"},"devDependencies":{"tap":"~0.4.0"},"author":{"name":"Olov Lassus","email":"olov.lassus@gmail.com"},"license":"MIT","readmeFilename":"README.md","_id":"simple-is@0.1.0","dist":{"shasum":"2cbf1bb4855e9b236dd14f9ae7e06cb35c71576e","size":2471,"noattachment":false,"key":"/simple-is/-/simple-is-0.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/simple-is/download/simple-is-0.1.0.tgz"},"_resolved":"../simple-is.tgz","_from":"../simple-is.tgz","_npmVersion":"1.2.18","_npmUser":{"name":"olov","email":"olov.lassus@gmail.com"},"maintainers":[{"name":"olov","email":"olov.lassus@gmail.com"}],"directories":{},"publish_time":1366370207845,"_cnpm_publish_time":1366370207845,"_hasShrinkwrap":false}},"readme":"# simple-is.js\nA maximally minimal type-testing library. Use it to make your code\nmore readable. Works in node and browsers.\n\n\n\n## Usage\n`var is = require(\"simple-is\");`\n\nUse `is.number(x)` instead of `typeof x === \"number\"` (also `is.boolean`, `is.string`, `is.function`).\n\nUse `is.nan(x)` instead of `typeof x === \"number\" && isNaN(x)`, `x !== x` or ES6 `Number.isNaN(x)`.\n\nUse `is.object(x)` instead of `x !== null && typeof x === \"object\"`.\n\nUse `is.primitive(x)` instead of `x === null || x === undefined || typeof x === \"boolean\" || typeof x === \"number\" || typeof x === \"string\"` (verbose on purpose).\n\nUse `is.array(x)` instead of ES5 `Array.isArray`.\n\nUse `is.finitenumber(x)` instead of `typeof x === \"number\" && isFinite(x)` or ES6 `Number.isFinite(x)`.\n\nUse `is.someof(x, [\"first\", 2, obj])` instead of (usually) `x === \"first\" || x === 2 || x === obj` or (alternatively)  `[\"first\", 2, obj].indexOf(x) >= 0`. Great for reducing copy and paste mistake in `if`-conditions and for making them more readable.\n\nUse `is.noneof(x, [\"first\", 2, obj])` instead of (usually) `x !== \"first\" && x !== 2 && x !== obj` or (alternatively)  `[\"first\", 2, obj].indexOf(x) === -1`.\n\nUse `is.in(x, \"name\")` instead of `Object.prototype.hasOwnProperty.call(x, \"name\")`.\n\nThat's it.\n\n\n\n## Installation\n\n### Node\nInstall using npm\n\n    npm install simple-is\n\n```javascript\nvar is = require(\"simple-is\");\n```\n\n### Browser\nClone the repo and include it in a script tag\n\n    git clone https://github.com/olov/simple-is.git\n\n```html\n<script src=\"simple-is/simple-is.js\"></script>\n```\n","_attachments":{},"readmeFilename":"README.md","license":"MIT"}