docs/fp/reference/add.md
Creates a function that adds a number to its input. Use it with pipe.
const result = pipe(value, add(addend));
::: info
This helper is specific to es-toolkit/fp. Use it when you want this operation as part of a pipe pipeline.
:::
add returns a function that adds addend to its input. It is designed for composition: it can transform the value flowing through a pipe, or serve as the callback of a function such as map.
import { add, map, pipe } from 'es-toolkit/fp';
// Transform the piped value.
pipe(3, add(2)); // => 5
// Use as a map callback.
pipe([1, 2, 3], map(add(10))); // => [11, 12, 13]
addend (number): The number to add to the input.((value: number) => number): A function that maps value to value + addend.