Files
lcbp3.np-dms.work/frontend/node_modules/graphql/jsutils/printPathArray.mjs
2025-09-21 20:29:15 +07:00

11 lines
213 B
JavaScript

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