PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
got
/
source
/
utils
'use strict'; const is = require('@sindresorhus/is'); module.exports = function deepFreeze(object) { for (const [key, value] of Object.entries(object)) { if (is.plainObject(value) || is.array(value)) { deepFreeze(object[key]); } } return Object.freeze(object); };
[-] get-body-size.js
[edit]
[+]
..
[-] url-to-options.js
[edit]
[-] timed-out.js
[edit]
[-] deep-freeze.js
[edit]
[-] is-form-data.js
[edit]