Skip to content

mul

mul(target, source)

Multiplies target by source and returns the result.

ts
mul(5, 3); // 15
mul(7, 2); // 14
ts
pipe(5, mul(3)); // 15
pipe(7, mul(2)); // 14