UNPKG

262 BJavaScriptView Raw
1/**
2 * A sharable identity function. Returns the input as-is with no transformation applied.
3 */
4export function identity(value) {
5 return value;
6}
7/**
8 * A sharable noop function. As the name suggests, does nothing
9 */
10export function noop() {
11 // noop
12}