UNPKG

@alfsnd/tiny

Version:

Removes all spaces from a string

4 lines 162 B
module.exports = function tiny(string) { if (typeof string !== "string") throw new TypeError("Tiny wants a string!"); return string.replace(/\s/g, ""); };