| 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) { |
| 192 | if (typeof arr[i] !== 'string') return false; |