mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-12-01 21:50:32 +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('');
|
||
|
}
|