Skip to content

add

add(target, source)

Adds source to target and returns the result.

ts
add(5, 3); // 8
ts
pipe(5, add(3)); // 8