mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-29 08:49:40 +00:00
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
/**
|
|
* Build a string describing the path.
|
|
*/
|
|
export default function printPathArray(path) {
|
|
return path.map(function (key) {
|
|
return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key;
|
|
}).join('');
|
|
}
|