delay
delay :: (Number duration, Any value) => Promise<Any> outputdescription
examples
basic example
import { delay } from 'conductor'
await delay(1000, 'hello') // 'hello world'partially applied form
import { compose, delay } from 'conductor'
const add1 = x => x + 1
await compose(delay(500), add1)(2) // 3Last updated