mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 20:51:42 +03:00
43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
|
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/jsutils/instanceOf.js
|
||
|
|
||
|
|
||
|
/**
|
||
|
* A replacement for instanceof which includes an error warning when multi-realm
|
||
|
* constructors are detected.
|
||
|
*/
|
||
|
// See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production
|
||
|
// See: https://webpack.js.org/guides/production/
|
||
|
export default Deno.env.NODE_ENV === 'production' ?
|
||
|
/* istanbul ignore next (See: https://github.com/graphql/graphql-js/issues/2317) */
|
||
|
// eslint-disable-next-line no-shadow
|
||
|
function instanceOf(value, constructor) {
|
||
|
return value instanceof constructor;
|
||
|
} : // eslint-disable-next-line no-shadow
|
||
|
function instanceOf(value, constructor) {
|
||
|
if (value instanceof constructor) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if (value) {
|
||
|
const valueClass = value.constructor;
|
||
|
const className = constructor.name;
|
||
|
|
||
|
if (className && valueClass && valueClass.name === className) {
|
||
|
throw new Error(`Cannot use ${className} "${value}" from another module or realm.
|
||
|
|
||
|
Ensure that there is only one instance of "graphql" in the node_modules
|
||
|
directory. If different versions of "graphql" are the dependencies of other
|
||
|
relied on modules, use "resolutions" to ensure only one version is installed.
|
||
|
|
||
|
https://yarnpkg.com/en/docs/selective-version-resolutions
|
||
|
|
||
|
Duplicate "graphql" modules cannot be used at the same time since different
|
||
|
versions may have different capabilities and behavior. The data from one
|
||
|
version used in the function from another could produce confusing and
|
||
|
spurious results.`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
};
|