UNPKG

@nkravella/tinytest

Version:

Removes all spaces from a string

8 lines (7 loc) 215 B
module.exports = function tiny(string) { // Function to remove all spaces from string. if (typeof string !== "string") throw new TypeError("Only strings allowed here!"); return string.replace(/\s/g, ""); };