upgrade outdated dependencies

This commit is contained in:
harttle
2017-07-28 21:25:24 +08:00
parent ea2a5f5c3b
commit 4ee2bc964c
28 changed files with 350 additions and 350 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ function parse (html, filepath, options) {
var parsedLinesCount = 0
while ((result = syntax.exec(html)) !== null) {
// passed html fragments
// passed html fragments
if (result.index > lastMatchEnd) {
htmlFragment = html.slice(lastMatchEnd, result.index)
tokens.push({
@@ -49,7 +49,7 @@ function parse (html, filepath, options) {
lastMatchEnd = syntax.lastIndex
}
// remaining html
// remaining html
if (html.length > lastMatchEnd) {
htmlFragment = html.slice(lastMatchEnd, html.length)
tokens.push({