mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
6 lines
No EOL
178 B
JavaScript
6 lines
No EOL
178 B
JavaScript
'use strict';
|
|
function isPromise(val) {
|
|
return !!val && (typeof val === 'object' || typeof val === 'function') && typeof val.then === 'function';
|
|
}
|
|
|
|
module.exports = isPromise; |