ACIL FM
Dark
Refresh
Current DIR:
/home/benbot/bot/server/node_modules/fast-json-stable-stringify
/
home
benbot
bot
server
node_modules
fast-json-stable-stringify
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
.github
-
chmod
Open
Rename
Delete
benchmark
-
chmod
Open
Rename
Delete
example
-
chmod
Open
Rename
Delete
test
-
chmod
Open
Rename
Delete
.eslintrc.yml
562 B
chmod
View
DL
Edit
Rename
Delete
.travis.yml
111 B
chmod
View
DL
Edit
Rename
Delete
index.d.ts
110 B
chmod
View
DL
Edit
Rename
Delete
index.js
1.8 MB
chmod
View
DL
Edit
Rename
Delete
LICENSE
1.12 MB
chmod
View
DL
Edit
Rename
Delete
package.json
1.23 MB
chmod
View
DL
Edit
Rename
Delete
README.md
3.43 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/benbot/bot/server/node_modules/fast-json-stable-stringify/index.js
'use strict'; module.exports = function (data, opts) { if (!opts) opts = {}; if (typeof opts === 'function') opts = { cmp: opts }; var cycles = (typeof opts.cycles === 'boolean') ? opts.cycles : false; var cmp = opts.cmp && (function (f) { return function (node) { return function (a, b) { var aobj = { key: a, value: node[a] }; var bobj = { key: b, value: node[b] }; return f(aobj, bobj); }; }; })(opts.cmp); var seen = []; return (function stringify (node) { if (node && node.toJSON && typeof node.toJSON === 'function') { node = node.toJSON(); } if (node === undefined) return; if (typeof node == 'number') return isFinite(node) ? '' + node : 'null'; if (typeof node !== 'object') return JSON.stringify(node); var i, out; if (Array.isArray(node)) { out = '['; for (i = 0; i < node.length; i++) { if (i) out += ','; out += stringify(node[i]) || 'null'; } return out + ']'; } if (node === null) return 'null'; if (seen.indexOf(node) !== -1) { if (cycles) return JSON.stringify('__cycle__'); throw new TypeError('Converting circular structure to JSON'); } var seenIndex = seen.push(node) - 1; var keys = Object.keys(node).sort(cmp && cmp(node)); out = ''; for (i = 0; i < keys.length; i++) { var key = keys[i]; var value = stringify(node[key]); if (!value) continue; if (out) out += ','; out += JSON.stringify(key) + ':' + value; } seen.splice(seenIndex, 1); return '{' + out + '}'; })(data); };
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply