PHP 8.2.30
Preview: index.js Size: 1.80 KB
/home/byroehnu/easepaybiz.easetack.com/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);
};

Directory Contents

Dirs: 4 × Files: 8

Name Size Perms Modified Actions
.github DIR
- drwxr-xr-x 2026-03-14 01:49:05
Edit Download
benchmark DIR
- drwxr-xr-x 2026-03-14 01:49:05
Edit Download
example DIR
- drwxr-xr-x 2026-03-14 01:49:05
Edit Download
test DIR
- drwxr-xr-x 2026-03-14 01:49:05
Edit Download
562 B lrw-r--r-- 2026-03-05 00:20:04
Edit Download
127 B lr--r--r-- 2026-03-14 01:49:05
Edit Download
111 B lrw-r--r-- 2026-03-05 00:20:05
Edit Download
110 B lrw-r--r-- 2026-03-05 00:20:04
Edit Download
1.80 KB lrw-r--r-- 2026-03-05 00:19:59
Edit Download
1.12 KB lrw-r--r-- 2026-03-05 00:19:59
Edit Download
1.23 KB lrw-r--r-- 2026-03-05 00:20:03
Edit Download
3.43 KB lrw-r--r-- 2026-03-05 00:20:04
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).