UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

6 lines (4 loc) 112 B
// Always returns the given value export function constantly<T>(value: T) { return (..._: any[]) => value; }