You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's times where it would be convenient to be able to do this:
name("thing").a(3).b(2).c(1.5).mul(2)
.. where the values that are numbers (i.e. where typeof value === 'number') in the patterned object get multiplied by 2, making name("thing").a(6).b(4).c(3).
Currently this results in name("thing").a(6).b(4).c(3).value(2)
Any objections to supporting the alternative behaviour?
The text was updated successfully, but these errors were encountered:
There's times where it would be convenient to be able to do this:
.. where the values that are numbers (i.e. where
typeof value === 'number'
) in the patterned object get multiplied by 2, makingname("thing").a(6).b(4).c(3)
.Currently this results in
name("thing").a(6).b(4).c(3).value(2)
Any objections to supporting the alternative behaviour?
The text was updated successfully, but these errors were encountered: