Submit
Path:
~
/
/
usr
/
local
/
lib
/
node_modules
/
npm
/
node_modules
/
uuid
/
lib
/
File Content:
sha1.js
'use strict'; var crypto = require('crypto'); function sha1(bytes) { // support modern Buffer API if (typeof Buffer.from === 'function') { if (Array.isArray(bytes)) bytes = Buffer.from(bytes); else if (typeof bytes === 'string') bytes = Buffer.from(bytes, 'utf8'); } // support pre-v4 Buffer API else { if (Array.isArray(bytes)) bytes = new Buffer(bytes); else if (typeof bytes === 'string') bytes = new Buffer(bytes, 'utf8'); } return crypto.createHash('sha1').update(bytes).digest(); } module.exports = sha1;
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
bytesToUuid.js
699 bytes
0644
rng-browser.js
969 bytes
0644
rng.js
239 bytes
0644
sha1-browser.js
2306 bytes
0644
sha1.js
531 bytes
0644
N4ST4R_ID | Naxtarrr