Skip to main content
Module

x/rambda/delay.js

Faster and smaller alternative to Ramda
Go to Latest
File
export const DELAY = 'RAMBDAX_DELAY'
export function delay(ms){ return new Promise(resolve => { setTimeout(() => { resolve(DELAY) }, ms) })}