(str: string)
| 57 | export type DeployBuilderOptions = DeployBuilderSchema & Record<string, any>; |
| 58 | |
| 59 | const escapeRegExp = (str: string) => str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&'); |
| 60 | |
| 61 | const moveSync = (src: string, dest: string) => { |
| 62 | copySync(src, dest); |
no outgoing calls
no test coverage detected