🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 02:28:17 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs12
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
utils
📍 /opt/alt/alt-nodejs12/root/usr/lib/node_modules/npm/lib/utils
🔄 Refresh
✏️
Editing: deep-sort-object.js
Read Only
'use strict' var sortedObject = require('sorted-object') module.exports = function deepSortObject (obj) { if (obj == null || typeof obj !== 'object') return obj if (obj instanceof Array) { return obj.map(deepSortObject) } obj = sortedObject(obj) Object.keys(obj).forEach(function (key) { obj[key] = deepSortObject(obj[key]) }) return obj }
💾 Save Changes
❌ Cancel