Server IP : 162.213.251.212 / Your IP : 18.218.72.220 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/public_html/easybuyer/node_modules/@webassemblyjs/ast/scripts/ |
Upload File : |
function iterateProps(obj, iterator) { Object.keys(obj).forEach(key => iterator({ ...obj[key], name: key })); } function mapProps(obj) { return Object.keys(obj).map(key => ({ ...obj[key], name: key })); } function filterProps(obj, filter) { const ret = {}; Object.keys(obj).forEach(key => { if (filter(obj[key])) { ret[key] = obj[key]; } }); return ret; } function typeSignature(meta) { const type = meta.array ? `Array<${meta.type}>` : meta.type; if (meta.optional) { return `${meta.name}?: ${type}`; } else if (meta.maybe) { return `${meta.name}: ?${type}`; } else { return `${meta.name}: ${type}`; } } const unique = items => Array.from(new Set(items)); module.exports = { iterateProps, mapProps, filterProps, typeSignature, unique };