UNPKG

@lucatolton/tiny

Version:

Removes all spaces from a string

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