JSPM

is-io-version

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

Check whether a given node version is io.js or node.js

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

Build Status downloads npm Code Climate Test Coverage dependencies

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'); // false

Contributing

Please see the contribution guidelines.