Appearance
mul(target, source)
Multiplies target by source and returns the result.
target
source
mul(5, 3); // 15 mul(7, 2); // 14
pipe(5, mul(3)); // 15 pipe(7, mul(2)); // 14