* @description Get all inputpath from inputpathMap * @returns inputpathMap string list
()
| 61 | * @returns inputpathMap string list |
| 62 | */ |
| 63 | static getList(): string[] { |
| 64 | const { inputpathMap } = storeToRefs(useIOPathStore()) |
| 65 | // return inputpath value with String List |
| 66 | return Array.from(inputpathMap.value.values()) |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * @description check inputpathMap is empty |
no outgoing calls
no test coverage detected