Skip to content

Commit

Permalink
re-order-readme (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
angus-c committed Jan 2, 2023
1 parent ca899a9 commit e96fcfe
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions md-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,17 @@
"permutations(); // throws"
]
},
"just-pipe": {
"packageName": "just-pipe",
"dir": "function-pipe",
"description": "Pass a value through a pipeline of functions",
"examples": [
"import pipe from 'just-pipe",
"",
"pipe(3, a => a+1, b => b*2) // 8",
"pipe('John Smith', a => a.split(' '), b => b.reverse(), c => c[0]) // 'Smith'"
]
},
"just-random": {
"packageName": "just-random",
"dir": "array-random",
Expand Down Expand Up @@ -1599,16 +1610,5 @@
"const squareFn = (number) => number * number;",
"deepMapValues({ a: 1, b: { c: 2, d: { e: 3 } } }, squareFn); // => { a: 1, b: { c: 4, d: { e: 9 } } }"
]
},
"just-pipe": {
"packageName": "just-pipe",
"dir": "function-pipe",
"description": "Pass a value through a pipeline of functions",
"examples": [
"import pipe from 'just-pipe",
"",
"pipe(3, a => a+1, b => b*2) // 8",
"pipe('John Smith', a => a.split(' '), b => b.reverse(), c => c[0]) // 'Smith'"
]
}
}

0 comments on commit e96fcfe

Please sign in to comment.