Files
lsp/node_modules/@hapi/hoek/lib/isPromise.js
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

10 lines
141 B
JavaScript

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