const flatten = (obj, prefix = [], current = {}) => { if (typeof(obj) === 'object' && obj !== null) { for (const key of Object.keys(obj)) { ...
確定! 回上一頁