summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/jsutils/printPathArray.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/graphql/jsutils/printPathArray.mjs')
-rw-r--r--school/node_modules/graphql/jsutils/printPathArray.mjs8
1 files changed, 0 insertions, 8 deletions
diff --git a/school/node_modules/graphql/jsutils/printPathArray.mjs b/school/node_modules/graphql/jsutils/printPathArray.mjs
deleted file mode 100644
index 6bf077a..0000000
--- a/school/node_modules/graphql/jsutils/printPathArray.mjs
+++ /dev/null
@@ -1,8 +0,0 @@
-/**
- * Build a string describing the path.
- */
-export default function printPathArray(path) {
- return path.map(function (key) {
- return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key;
- }).join('');
-}