UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

11 lines (10 loc) • 218 B
/** * No operation function. * * @returns {void} */ export declare function noop(): void; /** * No operation function which return the given value unaltered. */ export declare function noopValue<T>(value: T): T;