UNPKG

159 BJavaScriptView Raw
1module.exports = function tiny(string) {
2 if (typeof string !== "string") throw new TypeError("Tiny wants a string!");
3 return string.replace(/\s/g, "");
4};