mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-10 21:26:56 +01:00
cee42e7a88
* Convert to LF? * Modify gitattributes * Force LF * Git --renormalize * Update .gitattributes to enforce eol=lf * Redo CRLF -> LF on remaining files
19 lines
449 B
JavaScript
19 lines
449 B
JavaScript
export default class Promises {
|
|
static createTimeout (timeoutMs, timeoutMsg) {
|
|
let cancel = null
|
|
const wrapped = new Promise((resolve, reject) => {
|
|
const timeout = setTimeout(
|
|
() => {
|
|
reject(new Error(timeoutMsg + ' - Timed out after ' + timeoutMs + 'ms'))
|
|
},
|
|
timeoutMs
|
|
)
|
|
cancel = () => {
|
|
clearTimeout(timeout)
|
|
}
|
|
})
|
|
wrapped.cancel = cancel
|
|
return wrapped
|
|
}
|
|
}
|