Skip to content

Instantly share code, notes, and snippets.

@jakes2255
Created July 25, 2019 10:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakes2255/4c2b57c1dd7e550db6124ced93088db3 to your computer and use it in GitHub Desktop.
Save jakes2255/4c2b57c1dd7e550db6124ced93088db3 to your computer and use it in GitHub Desktop.
My Custom NPM package
module.exports = function(string) {
if(typeof string !== "string") throw new TypeError("Plesae enter a string value!");
return string.replace(/\s/g,"");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment