UNPKG

257 BTypeScriptView Raw
1/**
2 * A sharable identity function. Returns the input as-is with no transformation applied.
3 */
4export declare function identity<T>(value: T): T;
5/**
6 * A sharable noop function. As the name suggests, does nothing
7 */
8export declare function noop(): void;