Try 'keep' instead of 'const'

This commit is contained in:
alex 2022-04-24 14:38:33 +01:00
parent 27ff329981
commit 60027e664f

View File

@ -794,7 +794,7 @@ function _composeOp(a, b, func) {
// pattern composers
const composers = {
set: (a, b) => b,
const: id,
keep: (a, b) => a,
add: (a, b) => a + b,
sub: (a, b) => a - b,
mul: (a, b) => a * b,