Your IP : 216.73.216.48


Current Path : /hdd/hdd21/my5/My5/my5-frontend/node_modules/graphql/jsutils/
Upload File :
Current File : /hdd/hdd21/my5/My5/my5-frontend/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('');
}