Current section

Files

Jump to
common_graphql_client priv npm node_modules graphql jsutils printPathArray.mjs
Raw

priv/npm/node_modules/graphql/jsutils/printPathArray.mjs

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