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

backend-assistant

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backend-assistant - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

4

package.json
{
"name": "backend-assistant",
"version": "1.0.1",
"version": "1.0.2",
"description": "Powerful assistive functions for Firebase backends",

@@ -33,2 +33,2 @@ "main": "src/index.js",

}
}
}

@@ -162,2 +162,3 @@ const os = require('os');

let args = Array.prototype.slice.call(arguments);
args.unshift('error');

@@ -167,2 +168,11 @@ self.log.apply(self, args);

BackendAssistant.prototype.warn = function () {
const self = this;
let args = Array.prototype.slice.call(arguments);
args.unshift('warn');
self.log.apply(self, args);
};
BackendAssistant.prototype._log = function() {

@@ -169,0 +179,0 @@ const self = this;

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