Sha256: 45cbfd3e74850a4fa1bbb1c9bce0cdde58aac0e7e85a1ba36e21bd64d50b410e
Contents?: true
Size: 213 Bytes
Versions: 26
Compression:
Stored size: 213 Bytes
Contents
/** * Build a string describing the path. */ export function printPathArray(path) { return path .map((key) => typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key, ) .join(''); }
Version data entries
26 entries across 26 versions & 1 rubygems