import serialize from 'serialize-javascript' export function normalizeFunctions (obj) { if (typeof obj !== 'object' || Array.isArray(obj) || obj === null) { return obj } for (const key in obj) { if (key === '__proto__' || key === 'constructor') { continue } const val = obj[key] if (val !== null && typeof val === 'object' && !Array.isArray(obj)) { obj[key] = normalizeFunctions(val) } if (typeof obj[key] === 'function') { const asString = obj[key].toString() const match = asString.match(/^([^{(]+)=>\s*([\0-\uFFFF]*)/) if (match) { const fullFunctionBody = match[2].match(/^{?(\s*return\s+)?([\0-\uFFFF]*?)}?$/) let functionBody = fullFunctionBody[2].trim() if (fullFunctionBody[1] || !match[2].trim().match(/^\s*{/)) { functionBody = `return ${functionBody}` } // eslint-disable-next-line no-new-func obj[key] = new Function(...match[1].split(',').map(arg => arg.trim()), functionBody) } } } return obj } export function serializeFunction (func) { let open = false func = normalizeFunctions(func) return serialize(func) .replace(serializeFunction.assignmentRE, (_, spaces) => { return `${spaces}: function (` }) .replace(serializeFunction.internalFunctionRE, (_, spaces, name, args) => { if (open) { return `${spaces}${name}: function (${args}) {` } else { open = true return _ } }) .replace(new RegExp(`${(func.name || 'function').replace('$', '\\$')}\\s*\\(`), 'function(') .replace('function function', 'function') } serializeFunction.internalFunctionRE = /^(\s*)(?!(?:if)|(?:for)|(?:while)|(?:switch)|(?:catch))(\w+)\s*\((.*?)\)\s*\{/gm serializeFunction.assignmentRE = /^(\s*):(\w+)\(/gm