Socket
Socket
Sign inDemoInstall

istanbul-lib-instrument

Package Overview
Dependencies
6
Maintainers
2
Versions
75
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0-alpha.4 to 1.1.0

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="1.1.0"></a>
# [1.1.0](https://github.com/istanbuljs/istanbul-lib-instrument/compare/v1.1.0-alpha.4...v1.1.0) (2016-08-11)
### Bug Fixes
* guard against invalid loc ([#16](https://github.com/istanbuljs/istanbul-lib-instrument/issues/16)) ([23ebfc3](https://github.com/istanbuljs/istanbul-lib-instrument/commit/23ebfc3))
<a name="1.1.0-alpha.4"></a>

@@ -7,0 +17,0 @@ # [1.1.0-alpha.4](https://github.com/istanbuljs/istanbul-lib-instrument/compare/v1.0.0-alpha.5...v1.1.0-alpha.4) (2016-07-20)

8

dist/source-coverage.js

@@ -21,8 +21,8 @@ 'use strict';

start: {
line: loc.start.line,
column: loc.start.column
line: loc && loc.start.line,
column: loc && loc.start.column
},
end: {
line: loc.end.line,
column: loc.end.column
line: loc && loc.end.line,
column: loc && loc.end.column
}

@@ -29,0 +29,0 @@ };

{
"name": "istanbul-lib-instrument",
"version": "1.1.0-alpha.4",
"version": "1.1.0",
"description": "Core istanbul API for JS code coverage",

@@ -5,0 +5,0 @@ "author": "Krishnan Anantheswaran <kananthmail-github@yahoo.com>",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc