mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
15 lines
282 B
Plaintext
15 lines
282 B
Plaintext
// @flow strict
|
|
|
|
/**
|
|
* Build a string describing the path.
|
|
*/
|
|
export default function printPathArray(
|
|
path: $ReadOnlyArray<string | number>,
|
|
): string {
|
|
return path
|
|
.map(key =>
|
|
typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key,
|
|
)
|
|
.join('');
|
|
}
|