(value: any)
| 77 | * If value is not a string, it will be stringified with .toString() first. |
| 78 | */ |
| 79 | export const escapeForSingleQuotes = (value: any) => escapeString(value, { delimiter: "'" }); |
| 80 | |
| 81 | /** |
| 82 | * Make a string value safe to insert literally into a snippet within double quotes, |