Julien Gonzalez

Results 8 issues of Julien Gonzalez

With Closure Compiler v20210106 and the following flags: ```lang-none --language_in=ECMASCRIPT_NEXT --compilation_level ADVANCED --js tmp/wrap.js ``` This works fine: ```javascript /** * @param {string} str * @param {string} [prefix=aa] * @param...

help wanted
good first issue
P4

Just to follow up on this [issue](https://github.com/citation-style-language/documentation/issues/61) The JSON schema in [csl-data.json](https://github.com/citation-style-language/schema/blob/f01ba9c5ec2055e381a38598919a379255c496c5/csl-data.json#L221) says this about `circa`: ```json "circa": { "type": [ "string", "number", "boolean" ] } ``` But it is...

1.1

The following code taken from the docs throws an error: - http://leebyron.com/testcheck-js/api#genoneof - Version: 1.0.0-rc.2 ```javascript const numOrBool = gen.oneOf([ gen.int, gen.boolean ]) sample(numOrBool) ``` Output: ``` Error: [object Object],[object...

Hi, The documentation for `gen.any` [says](http://leebyron.com/testcheck-js/api#genany): > Generates any JS value, including Arrays and Objects (possibly nested). I ran this code a couple of times (± 10 times) and never...

> […]Perhaps I can also make a fix that allows multiple categories to be shown. (See, for instance, that the code for [`addIndex`][ai] lists two categories but only one shows...

The documentation for [approximate dates](https://docs.citationstyles.org/en/master/specification.html#approximate-dates) says: > Approximate dates test “true” for the is-uncertain-date conditional (see [Choose](https://docs.citationstyles.org/en/master/specification.html#choose)) However when looking at the relevant section in Choose, we can see: >...

1.1

Hi, This is related to the behaviour of the `form="short"` attribute on a year's `` element, e.g. ``. Cf [date-part documentation](https://docs.citationstyles.org/en/master/specification.html#date-part) The above date-part element would render `2005` as `05`....

This pull request has a few things going on: 1. Mocha was a bit out of date. Upgraded it but that meant having to stop testing on Node.js 6 and...