deno.land / x / mongoose@6.7.5 / lib / helpers / model / pushNestedArrayPaths.js

pushNestedArrayPaths.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
module.exports = function pushNestedArrayPaths(paths, nestedArray, path) { if (nestedArray == null) { return; }
for (let i = 0; i < nestedArray.length; ++i) { if (Array.isArray(nestedArray[i])) { pushNestedArrayPaths(paths, nestedArray[i], path + '.' + i); } else { paths.push(path + '.' + i); } }};
mongoose

Version Info

Tagged at
a year ago