Package Exports
- is-io-version
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 (is-io-version) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-io-version
Check whether a given node version is io.js or node.js
Installation
npm install --save is-io-version
Summary
Pass a version, get true or false back. Pretty simple really.
var isIo = require('is-io-version');
isIo('0.10.0'); // false
isIo('1.0.0'); // true
isIo('2.0.0'); // true
isIo('3.0.0'); // true
isIo('4.0.0'); // falseContributing
Please see the contribution guidelines.

