Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

9 lines
223 B
JavaScript

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