Files
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

10 lines
141 B
JavaScript

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