(value: string)
| 24 | }; |
| 25 | |
| 26 | export const escapeString = (value: string) => `"${value.replace(escapeStringRegExp, char => escapeStringMap[char])}"`; |
| 27 | |
| 28 | export const tstlHeader = "--[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]\n"; |
| 29 |
no outgoing calls
no test coverage detected