Files
red_de_investigacion_front/node_modules/@hapi/hoek/lib/isPromise.js
T

10 lines
141 B
JavaScript
Raw Normal View History

2020-01-14 20:43:08 -06:00
'use strict';
const internals = {};
module.exports = function (promise) {
return !!promise && typeof promise.then === 'function';
};