You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

stream-match

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-match - npm Package Compare versions

Comparing version
1.2.0
to
1.2.1
+1
-1
package.json
{
"name": "stream-match",
"version": "1.2.0",
"version": "1.2.1",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Match a string in a stream. Zero dependencies",

@@ -9,3 +9,3 @@ # stream-match

// Given a readable stream,
const res = await match(stream, /(p[^n+]n)/)
const res = await match(stream, /(p[^n]+n)/)
// `res` will containt `pattern` once it has been emitted.

@@ -12,0 +12,0 @@ ```