الملفات
2022-04-06 16:48:53 +00:00

5 أسطر
171 B
JavaScript

module.exports = function removespace(string) {
if (typeof string !== "string") throw new TypeError("Meh! Enter a string!!");
return string.replace(/\s/g, "");
};