This commit is contained in:
yigitfindikli 2022-03-30 14:40:04 +03:00
parent 890b670293
commit 6424fe33ae
2 changed files with 13 additions and 13 deletions

View file

@ -204,16 +204,6 @@ export default {
return null;
},
htmlEncode(str){
if (str) {
return str.replace(/[^\w. ]/gi, function(c){
return '&#'+c.charCodeAt(0)+';';
});
}
return null;
},
isEmpty(value) {
return (
value === null || value === undefined || value === '' ||