🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

validate_sorting

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

validate_sorting - npm Package Compare versions

Comparing version
1.0.5
to
1.0.6
+1
-1
package.json
{
"name": "validate_sorting",
"version": "1.0.5",
"version": "1.0.6",
"preferGlobal": true,

@@ -5,0 +5,0 @@ "description": "Just a tool to test a sorting list is correct or not.",

@@ -13,3 +13,3 @@ var argv = require('minimist')(process.argv.slice(2))

(function () {
var input = (argv.i || argv.input || null).toString();
var input = argv.i || argv.input || null;
var increase = !!(!argv.dec || argv.inc);

@@ -20,3 +20,3 @@

if(input) {
var fileStream = fs.createReadStream(input);
var fileStream = fs.createReadStream(input.toString());

@@ -23,0 +23,0 @@ var prev = null

Sorry, the diff of this file is not supported yet