UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

5 lines (4 loc) 122 B
export const _toLazyIndexed = <T>(fn: T): T & { indexed: true } => { (fn as any).indexed = true; return fn as any; };