mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/jsutils/isPromise.js
|
|
|
|
|
|
/**
|
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
* otherwise returns false.
|
|
*/
|
|
// eslint-disable-next-line no-redeclare
|
|
export default function isPromise(value) {
|
|
return typeof value?.then === 'function';
|
|
} |