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