FLUJOS/BACK_BACK/node_modules/graphql/jsutils/printPathArray.mjs
2025-11-07 00:06:12 +01:00

8 lines
223 B
JavaScript
Executable file

/**
* Build a string describing the path.
*/
export default function printPathArray(path) {
return path.map(function (key) {
return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key;
}).join('');
}