gfn_removeQuotes 추가

This commit is contained in:
KNKIM 2021-11-16 17:37:30 +09:00
parent 4297a96216
commit d02f8c9066

View File

@ -621,3 +621,9 @@ function gfn_reserveReadItem(masterId) {
return;
}
function gfn_removeQuotes(str) {
if(fn_isEmpty(str)) return "";
return str.replace(/"/gi, '').replace(/'/gi, "");
}