( uuid: string, code: string, url: string, source: InstallSource, metadata: SCMetadata )
| 83 | }; |
| 84 | |
| 85 | export const createScriptInfoLocal = async ( |
| 86 | uuid: string, |
| 87 | code: string, |
| 88 | url: string, |
| 89 | source: InstallSource, |
| 90 | metadata: SCMetadata |
| 91 | ) => { |
| 92 | await saveTempCode(uuid, code); |
| 93 | const info = createScriptInfo(uuid, "", url, source, metadata); |
| 94 | info.code = code; |
| 95 | return info; |
| 96 | }; |
no test coverage detected