initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
15
dawidd6/action-download-artifact-v3/node_modules/traverse/examples/leaves.js
generated
vendored
Executable file
15
dawidd6/action-download-artifact-v3/node_modules/traverse/examples/leaves.js
generated
vendored
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
var Traverse = require('traverse');
|
||||
|
||||
var obj = {
|
||||
a : [1,2,3],
|
||||
b : 4,
|
||||
c : [5,6],
|
||||
d : { e : [7,8], f : 9 },
|
||||
};
|
||||
|
||||
var leaves = Traverse(obj).reduce(function (acc, x) {
|
||||
if (this.isLeaf) acc.push(x);
|
||||
return acc;
|
||||
}, []);
|
||||
|
||||
console.dir(leaves);
|
||||
Loading…
Add table
Add a link
Reference in a new issue