2025-04-02 21:57:33 +08:00

10 lines
141 B
JavaScript
Executable File

'use strict';
const internals = {};
module.exports = function (promise) {
return !!promise && typeof promise.then === 'function';
};