mirror of
https://github.com/JonasunderscoreJones/jonas_jones-api.git
synced 2025-10-23 17:19:18 +02:00
6 lines
179 B
JavaScript
6 lines
179 B
JavaScript
'use strict';
|
|
function isPromise(val) {
|
|
return !!val && (typeof val === 'object' || typeof val === 'function') && typeof val.then === 'function';
|
|
}
|
|
|
|
module.exports = isPromise;
|