backend-assistant
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25878
13
562