From 4138714d74833b2c9a3e48cca4ca61504b22d32d Mon Sep 17 00:00:00 2001 From: build-token <build-token> Date: Wed, 5 Oct 2022 09:17:48 +0000 Subject: [PATCH] publish: feat: update TU generated from commit dd7141f8333c5ec97406df0102e4941f55419e93 --- index.js | 4 ++-- onDeleteAccount.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 71d738d..bd8e824 100644 --- a/index.js +++ b/index.js @@ -223652,12 +223652,12 @@ function removeMultipleSpaces(str) { } /** - * Remove SGE useless multiple white spaces + * Remove SGE address number * @param {string} str * @returns {string} */ function removeAddressnumber(str) { - return str.replace(/[0-9]|b |B |T |t /g, '') + return str.replace(/\d+ |b |B |T |t |\d+/g, '') } module.exports = { diff --git a/onDeleteAccount.js b/onDeleteAccount.js index a5f2654..cf0b54c 100644 --- a/onDeleteAccount.js +++ b/onDeleteAccount.js @@ -222981,12 +222981,12 @@ function removeMultipleSpaces(str) { } /** - * Remove SGE useless multiple white spaces + * Remove SGE address number * @param {string} str * @returns {string} */ function removeAddressnumber(str) { - return str.replace(/[0-9]|b |B |T |t /g, '') + return str.replace(/\d+ |b |B |T |t |\d+/g, '') } module.exports = { -- GitLab