UNPKG

@exadel/esl

Version:

Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components

4 lines (3 loc) 182 B
export function promisifyTimeout(timeout, payload, isReject) { return new Promise((resolve, reject) => setTimeout((isReject ? reject : resolve).bind(null, payload), timeout)); }