lix-website/themes/lix/assets/bootstrap/node_modules/p-is-promise/index.js

11 lines
181 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
'use strict';
module.exports = x => (
x instanceof Promise ||
(
x !== null &&
typeof x === 'object' &&
typeof x.then === 'function' &&
typeof x.catch === 'function'
)
);