AlkantarClanX12

Your IP : 18.118.154.237


Current Path : /proc/self/root/usr/lib/node_modules/npm/lib/utils/
Upload File :
Current File : //proc/self/root/usr/lib/node_modules/npm/lib/utils/deep-sort-object.js

'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
}