UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

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