UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

10 lines (9 loc) 158 B
/** * A function that returns always `undefined`. * @signature * P.noop() * @category Function */ export function noop(): any { return undefined; }