UNPKG

@devtunnel/tiny

Version:

Removes all spaces from a string

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