UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 120 B
/** * Always return a given input value */ declare const always: (val: any) => () => any; export default always;