commit basic milestone1 source

This commit is contained in:
starthomas610
2024-06-12 14:29:07 -04:00
parent 241bf5ed36
commit ee2375daf6
7 changed files with 1210 additions and 0 deletions
@@ -0,0 +1,11 @@
function getLowerAndCombile(str) {
return str.toLowerCase().replace(/[^a-z0-9\s]/gi, '').replace(/[_\s]/g, '_');
}
function getWithoutSpaceStr(str) {
return str.split(/[ ,]+/).join('');
}
function showWarningAlert(str) {
alertify.logPosition("top right").error("<i class='ion-alert-circled'><i> " + str + "");
}