Files
mooknote_web/node_modules/@hapi/hoek/lib/isPromise.js
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';
};