(obj, name, opts)
| 47 | } |
| 48 | |
| 49 | function prop(obj, name, opts) { |
| 50 | Object.defineProperty(obj, name, { |
| 51 | ...{ configurable: true, enumerable: true }, |
| 52 | ...opts |
| 53 | }); |
| 54 | } |
| 55 | |
| 56 | function walk(root, call) { |
| 57 | if (!root) return; |
no outgoing calls
no test coverage detected