Initialisation
Added the packages and files for the backend server
This commit is contained in:
7
node_modules/graphql/jsutils/isObjectLike.mjs
generated
vendored
Normal file
7
node_modules/graphql/jsutils/isObjectLike.mjs
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Return true if `value` is object-like. A value is object-like if it's not
|
||||
* `null` and has a `typeof` result of "object".
|
||||
*/
|
||||
export function isObjectLike(value) {
|
||||
return typeof value == 'object' && value !== null;
|
||||
}
|
||||
Reference in New Issue
Block a user