UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

10 lines (8 loc) 175 B
export const RAMBDA_DELAY = 'RAMBDA_DELAY' export function delay(ms) { return new Promise(resolve => { setTimeout(() => { resolve(RAMBDA_DELAY) }, ms) }) }