Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

adbkit-logcat

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adbkit-logcat - npm Package Compare versions

Comparing version 1.0.0 to 1.0.3

8

lib/logcat/reader.js

@@ -17,2 +17,4 @@ (function() {

Reader.ANY = '*';
function Reader(options) {

@@ -34,2 +36,5 @@ var _base;

Reader.prototype.exclude = function(tag) {
if (tag === Reader.ANY) {
return this.excludeAll();
}
this.filters.tags[tag] = Priority.SILENT;

@@ -48,2 +53,5 @@ return this;

}
if (tag === Reader.ANY) {
return this.includeAll(priority);
}
this.filters.tags[tag] = this._priority(priority);

@@ -50,0 +58,0 @@ return this;

3

package.json
{
"name": "adbkit-logcat",
"version": "1.0.0",
"version": "1.0.3",
"description": "A Node.js interface for working with Android's logcat output.",

@@ -30,3 +30,2 @@ "keywords": [

"dependencies": {
"async": "~0.2.9"
},

@@ -33,0 +32,0 @@ "devDependencies": {

@@ -164,3 +164,3 @@ # adbkit-logcat

* **tag** The tag string to exclude.
* **tag** The tag string to exclude. If `'*'`, works the same as `reader.excludeAll()`.
* Returns: The `Reader` instance.

@@ -178,3 +178,3 @@

* **tag** The tag string to exclude.
* **tag** The tag string to include. If `'*'`, works the same as `reader.includeAll(priority)`.
* **priority** Optional. A lower bound for the priority. Any numeric `Priority` constant or any `String` value accepted by `Priority.fromName()` is accepted. Defaults to `Priority.DEBUG`.

@@ -181,0 +181,0 @@ * Returns: The `Reader` instance.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc