Artem 2014-06-27 13:18:00 +06:00 committed by Ariya Hidayat
parent a6f6130767
commit 5e018bd650
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ function sleepSort(array, callback) {
}
}
if ( system.args < 2 ) {
if ( system.args.length < 2 ) {
console.log("Usage: phantomjs sleepsort.js PUT YOUR INTEGERS HERE SEPARATED BY SPACES");
phantom.exit(1);
} else {
sleepSort(Array.prototype.slice.call(system.args, 1), function() {
sleepSort(system.args.slice(1), function() {
phantom.exit();
});
}
}