Files
pdf-manager/node_modules/@hapi/hoek/lib/isPromise.js
2025-05-13 12:01:17 +02:00

10 lines
141 B
JavaScript
Executable File

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