fix:去掉多余重复的方法
This commit is contained in:
@@ -877,10 +877,12 @@ export async function getDnsMapData (type) {
|
||||
}
|
||||
return codeValueMap
|
||||
}
|
||||
export function handleSpecialValue (value) {
|
||||
value = value.replaceAll("'", "\\\\'")
|
||||
.replaceAll('"', '\\"')
|
||||
.replaceAll('&', '%26')
|
||||
export function handleSpecialValue(value){
|
||||
if(value){
|
||||
value = value.replaceAll("'", "\\\\'")
|
||||
.replaceAll('"','\\"')
|
||||
.replaceAll('&','%26')
|
||||
}
|
||||
return value
|
||||
}
|
||||
export function combineTabList (tableType, list, commonTabList) {
|
||||
|
||||
Reference in New Issue
Block a user