UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

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