Sha256: 63e213352de7a485bd06da1bcd8745c0f40446011b2cfec6437a8719f3b373e1
Contents?: true
Size: 329 Bytes
Versions: 26
Compression:
Stored size: 329 Bytes
Contents
'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(''); }
Version data entries
26 entries across 26 versions & 1 rubygems