- posso fare upload dell'immagine del prodotto dalla lista
- corretto import dati
This commit is contained in:
@@ -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, '')
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user