async-flumelog
Advanced tools
Comparing version 1.1.0 to 2.0.0
{ | ||
"name": "async-flumelog", | ||
"description": "An async flumelog", | ||
"version": "1.1.0", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/flumedb/async-flumelog", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -55,7 +55,4 @@ var ltgt = require('ltgt') | ||
if (this.values) { | ||
if (data != null) // skip deleted | ||
{ | ||
if (this.seqs) this.sink.write({ seq: this.cursor, value: data }) | ||
else this.sink.write(data) | ||
} | ||
if (this.seqs) this.sink.write({ seq: this.cursor, value: data }) | ||
else this.sink.write(data) | ||
} | ||
@@ -62,0 +59,0 @@ else |
@@ -131,3 +131,3 @@ var tape = require('tape') | ||
t.notOk(err) | ||
t.deepEqual(ary, [b2]) | ||
t.deepEqual(ary, [null, b2]) | ||
t.end() | ||
@@ -134,0 +134,0 @@ })) |
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
52103
1238