github-pages-deploy-action/node_modules/graphql/jsutils/printPathArray.mjs
2020-03-06 22:45:40 -05:00

9 lines
223 B
JavaScript

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