summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/jsutils/printPathArray.mjs
blob: 6bf077a564c4fe442b12699ca4eb613dfffb51c2 (plain)
1
2
3
4
5
6
7
8
/**
 * Build a string describing the path.
 */
export default function printPathArray(path) {
  return path.map(function (key) {
    return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key;
  }).join('');
}