UNPKG

@bamblehorse/tiny

Version:

Removes all spaces from a string

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