tap-parser
Advanced tools
Comparing version 1.1.0 to 1.1.1
// Transforms a stream of TAP into a stream of result objects | ||
// and string comments. Emits "results" event with summary. | ||
var Writable = require('stream').Writable | ||
if (!Writable) { | ||
try { | ||
Writale = require('readable-stream').Writable | ||
} catch (er) { | ||
throw new Error('Please install "readable-stream" to use this module ' + | ||
'with Node.js v0.8 and before') | ||
} | ||
} | ||
var yaml = require('js-yaml') | ||
@@ -5,0 +14,0 @@ var util = require('util') |
{ | ||
"name": "tap-parser", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "parse the test anything protocol", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
226659
4698