mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
#!/usr/bin/env node
|
|
setTimeout(function() {
|
|
console.log('slow');
|
|
}, parseInt(process.argv[2], 10));
|