(name)
| 7230 | // Before that matters, we should switch to a reasonable representation. |
| 7231 | const safeV8CallSiteFacet= (callSite)=>{ |
| 7232 | const methodEntry= (name)=>{ |
| 7233 | const method= callSite[name]; |
| 7234 | return [name, ()=> apply(method, callSite, [])]; |
| 7235 | }; |
| 7236 | const o= fromEntries(arrayMap(safeV8CallSiteMethodNames, methodEntry)); |
| 7237 | return create(o, {}); |
| 7238 | }; |