Add null guard to tag parsing function to prevent parsing values that don't match tag RegEx.

pull/10616/head
Hunter Trujillo 2017-11-21 13:51:02 -07:00
parent efbc7e0853
commit 930f52bb04
1 changed files with 12 additions and 8 deletions

View File

@ -196,6 +196,7 @@ function parseSeries(series) {
function parseTag(s, obj) {
const match = tag.exec(s)
if (match) {
const kv = match[0]
const key = match[1]
const value = match[2]
@ -209,6 +210,9 @@ function parseSeries(series) {
return s.slice(match.index + kv.length)
}
return ''
}
let workStr = series.slice()
const out = {}