(array, value)
| 2708 | } |
| 2709 | } |
| 2710 | concatProperty(array, value) { |
| 2711 | if ((value instanceof Array) || (typeof value == "string")) |
| 2712 | return array.concat(value); |
| 2713 | return array; |
| 2714 | } |
| 2715 | createFolder(path, folder) { |
| 2716 | const names = folder.split(this.slash); |
| 2717 | for (let name of names) { |
no test coverage detected