New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fireproof

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fireproof - npm Package Compare versions

Comparing version

to
1.5.0

lib/stats.js

1

index.js

@@ -5,2 +5,3 @@

var Fireproof = require('./lib/core');
require('./lib/stats')(Fireproof);
require('./lib/snapshot')(Fireproof);

@@ -7,0 +8,0 @@ require('./lib/query')(Fireproof);

12

lib/read.js

@@ -17,5 +17,7 @@

var deferred = Fireproof._checkQ().defer();
var self = this;
this._ref.transaction(updateFunction, function(err, committed, snap) {
self._ref.transaction(updateFunction, function(err, committed, snap) {
Fireproof.stats._record('read', self.toString());
snap = new Fireproof.Snapshot(snap);

@@ -75,2 +77,3 @@

Fireproof.stats._record('read', this.toString());
snap = new Fireproof.Snapshot(snap);

@@ -119,5 +122,3 @@

Fireproof.prototype.off = function(eventType, callback, context) {
this._ref.off(eventType, callback, context);
};

@@ -147,4 +148,7 @@

this._ref.once(eventType, function(snap) {
var self = this;
self._ref.once(eventType, function(snap) {
Fireproof.stats._record('read', self.toString());
snap = new Fireproof.Snapshot(snap);

@@ -151,0 +155,0 @@

@@ -24,2 +24,3 @@

Fireproof.stats._record('write', this.toString());
this._ref.set(value, handler);

@@ -43,2 +44,3 @@

Fireproof.stats._record('update', this.toString());
this._ref.update(value, handler);

@@ -61,2 +63,3 @@

Fireproof.stats._record('write', this.toString());
this._ref.remove(handler);

@@ -80,2 +83,4 @@

Fireproof.stats._record('write', this.toString());
var rv = new Fireproof(

@@ -103,2 +108,3 @@ this._ref.push(value, handler),

Fireproof.stats._record('write', this.toString());
this._ref.setWithPriority(value, priority, handler);

@@ -122,2 +128,3 @@

Fireproof.stats._record('write', this.toString());
this._ref.setPriority(priority, handler);

@@ -124,0 +131,0 @@

{
"name": "fireproof",
"version": "1.4.2",
"version": "1.5.0",
"description": "Promises for Firebase objects.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -49,3 +49,3 @@

IE back to 8.
IE back to 9.

@@ -51,5 +51,9 @@

if (global.__bootstrappedFirebase) {
return global.__bootstrappedFirebase.tearDown();
console.log('Tearing down Firebase', global.__bootstrappedFirebase.toString());
return global.__bootstrappedFirebase.tearDown()
.then(function() {
console.log('Done!');
});
}
});

Sorry, the diff of this file is not supported yet