Skip to content

Instantly share code, notes, and snippets.

@BukhariH
Created December 4, 2017 16:09
Show Gist options
  • Save BukhariH/a4f6b744e038f7a3649442902a5594c6 to your computer and use it in GitHub Desktop.
Save BukhariH/a4f6b744e038f7a3649442902a5594c6 to your computer and use it in GitHub Desktop.
Simple ES6 Logger
const logger = (() => {
let log = "";
return {
add: msg => log += msg + "\n",
show: () => console.log(log)
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment