UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

9 lines (8 loc) 232 B
"use strict"; // Always returns the given value Object.defineProperty(exports, "__esModule", { value: true }); exports.constantly = void 0; function constantly(value) { return (..._) => value; } exports.constantly = constantly;