diff --git a/src/main/webapp/js/nlib.js b/src/main/webapp/js/nlib.js index 8c27ece5..0e2302c9 100644 --- a/src/main/webapp/js/nlib.js +++ b/src/main/webapp/js/nlib.js @@ -621,3 +621,9 @@ function gfn_reserveReadItem(masterId) { return; } + +function gfn_removeQuotes(str) { + if(fn_isEmpty(str)) return ""; + + return str.replace(/"/gi, '').replace(/'/gi, ""); +} \ No newline at end of file