react-native-get-pixel_edit/node_modules/@hapi/hoek/lib/isPromise.js
2025-07-09 11:41:52 +09:00

10 lines
141 B
JavaScript

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