- "FP" stands for Functional Programming
- Submodule of Lodash's library (
import x from "lodash/fp/x"
versusimport x from "lodash/x"
) - Has a writeup on Lodash's Github page: https://github.com/lodash/lodash/wiki/FP-Guide
- Immutable: All functions return a copy of the data instead of modifying it. Even functions which normally mutate data, like
_set
, are wrapped to make a copy first.