10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const internals = {};
|
||
|
|
||
|
|
||
|
module.exports = function (promise) {
|
||
|
|
||
|
return !!promise && typeof promise.then === 'function';
|
||
|
};
|