blob: 355af8e2eb71ac70a24c43154fb728a2a46605d7 [file] [log] [blame] [edit]
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true,
});
exports.printPathArray = printPathArray;
/**
* Build a string describing the path.
*/
function printPathArray(path) {
return path
.map((key) =>
typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key,
)
.join('');
}