Files
tp-we-vue/node_modules/@hapi/hoek/lib/isPromise.js
2024-11-28 23:08:17 +01:00

10 lines
141 B
JavaScript
Executable File

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