Socket
Socket
Sign inDemoInstall

tap-parser

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tap-parser - npm Package Compare versions

Comparing version 11.0.1 to 11.0.2

8

index.js

@@ -98,5 +98,5 @@ 'use strict'

rest = rest.split(/(?<!\\)# /g)
rest = rest.split(/(?<=\s|^)(?<!\\)#/g)
name = rest.shift().replace(/\\#/g, '#').replace(/\n/g, '\\')
rest = rest.join('# ').replace(/\\#/g, '#').replace(/\n/g, '\\')
rest = rest.join('#').replace(/\\#/g, '#').replace(/\n/g, '\\')

@@ -106,3 +106,3 @@ // now, let's see if there's a directive in there.

if (!dir)
name += (rest ? '# ' + rest : '') + buffered
name += (rest ? '#' + rest : '') + buffered
else {

@@ -1170,2 +1170,3 @@ // handle buffered subtests with todo/skip on them, like

.replace(/#/g, '\\#')
.trim()

@@ -1176,2 +1177,3 @@ const unesc = str => str

.replace(/\u0000/g, '\\')
.trim()

@@ -1178,0 +1180,0 @@ class FinalResults {

{
"name": "tap-parser",
"version": "11.0.1",
"version": "11.0.2",
"description": "parse the test anything protocol",

@@ -16,3 +16,3 @@ "main": "index.js",

"glob": "^7.0.5",
"tap": "^15.2.2"
"tap": "^16.0.0"
},

@@ -19,0 +19,0 @@ "scripts": {

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