(array, value)
| 996 | } |
| 997 | } |
| 998 | concatProperty(array, value) { |
| 999 | if ((value instanceof Array) || (typeof value == "string")) |
| 1000 | return array.concat(value); |
| 1001 | return array; |
| 1002 | } |
| 1003 | filterManifestFile(path) { |
| 1004 | const parts = this.splitPath(path); |
| 1005 | if ("tls" === parts.name) parts.name = "manifest"; // workaround for tls.json which doesn't follow naming convention |
no test coverage detected