UNPKG

@abhishek-parmar1/flexy

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