From 43dba624341b9d63083bb551a8d9e7ce282f8c3b Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Mon, 24 Apr 2023 01:18:41 +0100 Subject: [PATCH] Remove comments Signed-off-by: Fred Boniface --- src/utils/sanitizer.utils.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/utils/sanitizer.utils.js b/src/utils/sanitizer.utils.js index 55fa00a..245b1ee 100644 --- a/src/utils/sanitizer.utils.js +++ b/src/utils/sanitizer.utils.js @@ -1,21 +1,6 @@ const clean = require('string-sanitizer-fix'); const log = require('../utils/log.utils'); -/* -string.sanitize("a.bc@d efg#h"); // abcdefgh -string.sanitize.keepSpace("a.bc@d efg#h"); // abcd efgh -string.sanitize.keepUnicode("a.bc@d efg#hক"); // abcd efghক -string.sanitize.addFullstop("a.bc@d efg#h"); // abcd.efgh -string.sanitize.addUnderscore("a.bc@d efg#h"); // abcd_efgh -string.sanitize.addDash("a.bc@d efg#h"); // abcd-efgh -string.sanitize.removeNumber("@abcd efgh123"); // abcdefgh -string.sanitize.keepNumber("@abcd efgh123"); // abcdefgh123 -string.addFullstop("abcd efgh"); // abcd.efgh -string.addUnderscore("@abcd efgh"); // @abcd_efgh -string.addDash("@abcd efgh"); // @abcd-efgh -string.removeSpace("@abcd efgh"); // @abcdefgh -*/ - function removeNonAlphanumeric(inputString) { // Should be able to replace sanitizer module return inputString.replace(/[^a-zA-Z0-9]/g, ''); }