Comparing version 0.1.0 to 0.1.1
@@ -12,4 +12,3 @@ var version = process.version; | ||
!~['v1.0.0','v1.0.1'].indexOf(version) && require('child_process').exec('node -h', function(err, help) { | ||
if (err) ioIo = false; | ||
isIo = /iojs/m.test(help); | ||
if (!err) isIo = /iojs/m.test(help); | ||
}); | ||
@@ -16,0 +15,0 @@ |
{ | ||
"name": "is-iojs", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Determines if runtime is iojs", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -16,5 +16,5 @@ Determines if runtime is `iojs` or not. | ||
```js | ||
var isIo = require('is-iojs').safe(); // safe determination, based on result of `node -h` help message | ||
var isIo = require('is-iojs').safe(); | ||
if (isIojs()) { /* runtime is iojs */ } else { /* runtime is node */ } | ||
``` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18228
13