Initialisation

Added the packages and files for the backend server
This commit is contained in:
jackbeeby
2024-12-15 17:48:45 +11:00
parent 25066e1ee8
commit b412dfe2ca
2732 changed files with 330572 additions and 0 deletions

12
node_modules/@apollo/utils.isnodelike/src/index.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
export const isNodeLike =
typeof process === "object" &&
process &&
// We used to check `process.release.name === "node"`, however that doesn't
// account for certain forks of Node.js which are otherwise identical to
// Node.js. For example, NodeSource's N|Solid reports itself as "nsolid",
// though it's mostly the same build of Node.js with an extra addon.
process.release &&
process.versions &&
// The one thing which is present on both Node.js and N|Solid (a fork of
// Node.js), is `process.versions.node` being defined.
typeof process.versions.node === "string";