1.0.4 • Published 2 years ago

@iamserver/no-log v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

no-log iAmServer - 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);