Appearance
add(target, source)
Adds source to target and returns the result.
source
target
add(5, 3); // 8
pipe(5, add(3)); // 8