67

GitHub - sindresorhus/filter-console: Filter out unwanted `console.log()` output

 5 years ago
source link: https://github.com/sindresorhus/filter-console
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

readme.md

filter-console Build Status

Filter out unwanted console.log() output

Can be useful when you don't control the output, for example, filtering out PropType warnings from a third-party React component.

Install

$ npm install filter-console

Usage

const filterConsole = require('filter-console');

const disableFilter = filterConsole(['?']);

const log = () => {
	console.log('');
	console.log('?');
	console.log('?');
	console.log('?');
};

log();

disableFilter();

log();
$ node example.js

?
?

?
?
?

API

filterConsole(excludePatterns, [options])

Returns a function, which when called, disables the filter.

excludePatterns

Type: Array<string|RegExp|Function>

Console output that matches any of the given patterns are filtered from being logged. The patterns are matched against what would be logged and not the console method input arguments directly. Meaning an exclude pattern of 'foo bar' will match console.log('foo %s', 'bar').

Filter types:

  • string: Checks if the string pattern is included in the console output.
  • RegExp: Checks if the RegExp pattern matches the console output.
  • Function: Receives the console output as a string and is expected to return a truthy/falsy value of whether to exclude it.

options

Type: Object

methods

Type: Array
Default: ['log', 'debug', 'info', 'warn', 'error']

Console methods to filter.

console

Type: Object
Default: console

Use a custom console object. Can be useful for testing or mocking.

License

MIT © Sindre Sorhus


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK