PATH:
usr
/
lib
/
node_modules
/
npm
/
lib
/
utils
// Convert bytes to printable output, for file reporting in tarballs // Only supports up to GB because that's way larger than anything the registry // supports anyways. const formatBytes = (bytes, space = true) => { let spacer = '' if (space) { spacer = ' ' } if (bytes < 1000) { // B return `${bytes}${spacer}B` } if (bytes < 1000000) { // kB return `${(bytes / 1000).toFixed(1)}${spacer}kB` } if (bytes < 1000000000) { // MB return `${(bytes / 1000000).toFixed(1)}${spacer}MB` } // GB return `${(bytes / 1000000000).toFixed(1)}${spacer}GB` } module.exports = formatBytes
[-] ping.js
[edit]
[-] explain-eresolve.js
[edit]
[-] completion.sh
[edit]
[-] otplease.js
[edit]
[-] log-file.js
[edit]
[-] audit-error.js
[edit]
[-] format-search-stream.js
[edit]
[-] exit-handler.js
[edit]
[-] pulse-till-done.js
[edit]
[-] tar.js
[edit]
[-] open-url.js
[edit]
[-] web-auth.js
[edit]
[+]
..
[-] reify-finish.js
[edit]
[-] read-user-info.js
[edit]
[-] ansi-trim.js
[edit]
[-] get-identity.js
[edit]
[-] explain-dep.js
[edit]
[-] open-url-prompt.js
[edit]
[-] replace-info.js
[edit]
[-] display.js
[edit]
[-] reify-output.js
[edit]
[-] validate-lockfile.js
[edit]
[-] is-windows.js
[edit]
[-] cmd-list.js
[edit]
[-] format-bytes.js
[edit]
[+]
config
[+]
completion
[-] log-shim.js
[edit]
[-] did-you-mean.js
[edit]
[-] queryable.js
[edit]
[-] timers.js
[edit]
[-] npm-usage.js
[edit]
[-] error-message.js
[edit]
[-] update-notifier.js
[edit]