PATH: //opt/alt/alt-nodejs12/root/lib/node_modules/npm/node_modules/errno
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .travis.yml
↓
X
📄 README.md
↓
X
📄 build.js
↓
X
📄 cli.js
↓
X
📄 custom.js
↓
X
📄 errno.js
↓
X
📄 package.json
↓
X
📄 test.js
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: cli.js
#!/opt/alt/alt-nodejs12/root/usr/bin/node var errno = require('./') , arg = process.argv[2] , data, code if (arg === undefined) { console.log(JSON.stringify(errno.code, null, 2)) process.exit(0) } if ((code = +arg) == arg) data = errno.errno[code] else data = errno.code[arg] || errno.code[arg.toUpperCase()] if (data) console.log(JSON.stringify(data, null, 2)) else { console.error('No such errno/code: "' + arg + '"') process.exit(1) }
SIMPAN PERUBAHAN