You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there!, I'm currently using your HOCON parser and noticed that there is a bug with single qutoed strings not being escaped.
Given a HOCON such as
x = [
{
s : "'Hello'"
}
]
you'll run into a
RangeError: Maximum call stack size exceeded
at m (index.js:255)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
at m (index.js:262)
I've solved the problem by escaping the characters myself with Regex prior to parsing, but just as an FYI.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi there!, I'm currently using your HOCON parser and noticed that there is a bug with single qutoed strings not being escaped.
Given a HOCON such as
you'll run into a
I've solved the problem by escaping the characters myself with Regex prior to parsing, but just as an FYI.
Thanks!
The text was updated successfully, but these errors were encountered: