Alex Kocharin

Results 141 comments of Alex Kocharin

Thoughts are pretty skeptic, and the published workaround isn't a very good one. However, char-by-char concatenation in general isn't efficient. Maybe instead of `var str = ''; str += 'x';...

When I was implementing tests for [my json5 parser](https://github.com/rlidwka/jju), I took this approach: 1. got existing json5 tests and tweaked them a bit 2. got existing v8 json tests and...

> Is there a portable test data set? I just created one here: https://github.com/rlidwka/jju/blob/master/test/portable-json5-tests.yaml About a hundred tests, should cover pretty much anything about literals notation in ES5 spec.

> 1. Lines 95 and 100: I think you have object and array mixed up oops... you're right :) > 1. JSON will stringify NaN and Infinity to null. Yeah,...

If we're talking about tests... Is there any good way to define each `assert` as a separate test without `it ('blahblah', function() { assert() })` boilerplate?

As far as I've been able to research, `api_stage.dzcode.io` is an alias for `api-stage.dzcode.io`, and `dz_code.io` simply isn't a thing. **Please provide an example of widely used domains with underscores...

I'm curious, what it can be used for in browser environment? Some kind of a single-page app?

> I would personally wait until automated test are in place to claim support. An important project like this one cannot just rely on manual testing, it is just not...

@mycaule , that's not how ini works. All ini parsers treat dots as path separators, and not doing so would be incompatible. Instead, I would suggest to use this syntax:...

@brettz9, this is not a yaml file, so yaml parsers can't parse it. If you check any other yaml parser, they'd fail on it as well. *It's kinda unfortunate actually,...