(src, meta)
| 35 | return res; |
| 36 | }; |
| 37 | const proxifyGroup = (src, meta) => new SafeProxy({ __proto__: null }, { |
| 38 | __proto__: null, |
| 39 | get: (group, key) => group[key] ?? proxifyValue(group, key, src, meta?.[key]), |
| 40 | }); |
| 41 | /** |
| 42 | * @param {Object} thisArg - original API group |
| 43 | * @param {function} func - original API function |
no test coverage detected