New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

doc-parser

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

doc-parser - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## [Version 0.4.4](https://github.com/glayzzle/docblock-parser/releases/tag/v0.4.4) (2017-1-20)
### Patches
- check offset size: [`db5f6a2`](https://github.com/glayzzle/docblock-parser/commit/db5f6a2)
[...full changes](https://github.com/glayzzle/docblock-parser/compare/v0.4.3...v0.4.4)
## [Version 0.4.3](https://github.com/glayzzle/docblock-parser/releases/tag/v0.4.3) (2017-1-19)

@@ -2,0 +10,0 @@

2

package.json
{
"name": "doc-parser",
"version": "0.4.3",
"version": "0.4.4",
"description": "Parses docblocks comments",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -157,3 +157,3 @@ /*!

ch = '=>'; // alias
} else if (ch === '=' && this._input[this.offset] === '>') {
} else if (ch === '=' && this.offset < this._input.length && this._input[this.offset] === '>') {
ch += this.input();

@@ -160,0 +160,0 @@ }

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