Try 'keep' instead of 'const'
This commit is contained in:
parent
27ff329981
commit
60027e664f
1 changed files with 1 additions and 1 deletions
|
|
@ -794,7 +794,7 @@ function _composeOp(a, b, func) {
|
||||||
// pattern composers
|
// pattern composers
|
||||||
const composers = {
|
const composers = {
|
||||||
set: (a, b) => b,
|
set: (a, b) => b,
|
||||||
const: id,
|
keep: (a, b) => a,
|
||||||
add: (a, b) => a + b,
|
add: (a, b) => a + b,
|
||||||
sub: (a, b) => a - b,
|
sub: (a, b) => a - b,
|
||||||
mul: (a, b) => a * b,
|
mul: (a, b) => a * b,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue