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

async-flumelog

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-flumelog - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"name": "async-flumelog",
"description": "An async flumelog",
"version": "1.0.2",
"version": "1.0.3",
"homepage": "https://github.com/arj03/async-flumelog",

@@ -6,0 +6,0 @@ "repository": {

@@ -39,3 +39,3 @@ var ltgt = require('ltgt')

if (this.opts.gt)
if (this.opts.gt >= 0)
this.skipFirst = true

@@ -42,0 +42,0 @@

@@ -125,1 +125,17 @@ var tape = require('tape')

})
tape('gt', function (t) {
log.stream({seqs: false, gt: 0}).pipe(collect(function (err, ary) {
t.notOk(err)
t.deepEqual(ary, [v2, v3])
t.end()
}))
})
tape('gt -1', function (t) {
log.stream({seqs: false, gt: -1}).pipe(collect(function (err, ary) {
t.notOk(err)
t.deepEqual(ary, [v1, v2, v3])
t.end()
}))
})
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