(receiver, prop)
| 11051 | return slice; |
| 11052 | } |
| 11053 | function GetMethod(receiver, prop) { |
| 11054 | const func = receiver[prop]; |
| 11055 | if (func === void 0 || func === null) { |
| 11056 | return void 0; |
| 11057 | } |
| 11058 | if (typeof func !== "function") { |
| 11059 | throw new TypeError(`${String(prop)} is not a function`); |
| 11060 | } |
| 11061 | return func; |
| 11062 | } |
| 11063 | function CreateAsyncFromSyncIterator(syncIteratorRecord) { |
| 11064 | const syncIterable = { |
| 11065 | [Symbol.iterator]: () => syncIteratorRecord.iterator |
no outgoing calls
no test coverage detected
searching dependent graphs…