doc-parser
Advanced tools
Comparing version 0.4.3 to 0.4.4
@@ -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 @@ |
{ | ||
"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 @@ } |
81568