(array, ...values)
| 85 | } |
| 86 | |
| 87 | function arrayAppender(array, ...values) { |
| 88 | const offset = array.length; |
| 89 | for (let i = 0; i < values.length; ++i) { |
| 90 | array[offset + i] = values[i]; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | function rowFactory(...keys) { |
| 95 | if (!keys.includes('__proto__')) { |
nothing calls this directly
no outgoing calls
no test coverage detected