(val, paths, path)
| 3272 | } |
| 3273 | |
| 3274 | function _pushNestedArrayPaths(val, paths, path) { |
| 3275 | if (val != null) { |
| 3276 | const numElements = val.length; |
| 3277 | for (let j = 0; j < numElements; ++j) { |
| 3278 | if (Array.isArray(val[j])) { |
| 3279 | _pushNestedArrayPaths(val[j], paths, path + '.' + j); |
| 3280 | } else { |
| 3281 | paths.add(path + '.' + j); |
| 3282 | } |
| 3283 | } |
| 3284 | } |
| 3285 | } |
| 3286 | |
| 3287 | /*! |
| 3288 | * ignore |
no outgoing calls
no test coverage detected