UNPKG

323 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = printPathArray;
7
8/**
9 * Build a string describing the path.
10 */
11function printPathArray(path) {
12 return path.map(function (key) {
13 return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key;
14 }).join('');
15}