- posso fare upload dell'immagine del prodotto dalla lista

- corretto import dati
This commit is contained in:
Surya Paolo
2024-03-02 22:53:35 +01:00
parent 93e58f444d
commit 71e4c91930
68 changed files with 240 additions and 161 deletions

View File

@@ -8363,6 +8363,15 @@ export const tools = {
return inputString.replace(/[^\d.,]/g, '').replace(',', '.');
},
escapeQuotes(stringa: string) {
return stringa.replace(/"/g, '\\"');
},
replaceQuotesWithSingleQuotes(jsonString: string) {
return jsonString.replace(/"/g, "'");
},
removeescape(inputString: string): string {
return inputString.replace('\\', '').replace(/"/g, '')
},