@iamserver/no-log
v1.0.4
Published
NPM package to disable window.console methods
Downloads
6
Maintainers
Readme
no-log
Remove all the Window.console in production, which prevents logging of information to the browser's console.
Installation
npm install --save @iamserver/no-log
Importing
import noLog from "@iamserver/no-log"; // ES6
const noLog = require("@iamserver/no-log"); // ES5 with npm
Usage
import noLog from "@iamserver/no-log";
const status = true || "production"; // production
noLog(status);