"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.default=printPathArray;/** * Build a string describing the path. */functionprintPathArray(path){returnpath.map(function(key){returntypeofkey==='number'?'['+key.toString()+']':'.'+key;}).join('');}