UNPKG

@jtabbdev/remove_spaces

Version:

This removes all spaces from a string

4 lines 155 B
module.exports = removeSpace = str => { if(typeof str !== "string") throw new TypeError("A string is required.") return str.replace(/\s\g, "") }