| 186 | const { apply } = Function.prototype; |
| 187 | const GeneratorFunctionPrototype = Object.getPrototypeOf(function*(){}); |
| 188 | const identifier = str => `"${str.replace(/"/g, '""')}"`; |
| 189 | const defer = x => () => x; |
| 190 | const isStringArray = (arr) => { |
| 191 | for (let i = 0; i < arr.length; ++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected