Thomas Jensen

Results 11 issues of Thomas Jensen

This is my subjective opinion and I might as well be wrong, but I really don't like option names like "debug". - it says little/nothing about actual effect - it...

feature-request
patch-welcome

https://github.com/medialize/URI.js/blob/gh-pages/src/URI.js#L739 I read this comment about having `=` for null values in the source, then read the referenced spec, but got to the opposite conclusion: you *should* output a `=`...

Try: `echo 1?: 2;` Expected output: 1 Outputs: undefined

Support GItHub gists, much like http://raw.githack.com does: https://gistcdn.githack.com/tjconcept/69994c78c8f5b8008258353292787519/raw/f31a2ce182d460910cdf6a52aba7d7c346e56e57/index.js GitHub Gists provide the interesting "secret" mode which is "access by knowledge". It means a CDN is able to relay it without...

With the latest version of https://github.com/isaacs/node-tap the subtests are not shown when running.

When using example on a password field, you just get a string of stars, not very usefull. I've used this rather ugly code to change a password field to a...

```js qs.parse('a') -> { a: '' } qs.parse('a&') -> { a: '' } qs.parse('a&b') -> { a: '', b: '' } qs.parse('a=&b') -> { a: '', b: '' } querystringparser.parse('a')...

``` js var qs = require('qs'); var qsparser = require('querystringparser'); console.log(qs.parse({ key: 'Value & value', })); console.log(qsparser.parse({ key: 'Value & value', })); ``` ``` js { key: 'Value & value'...

##### Working (depth: 2) ``` js var Qss = require('querystringparser/js/querystringserializer'); (new Qss()).serialize({ a: { b: true }, d: true, }); ``` Expected and result: `a[b]=true&d=true` ##### Not working (depth: 3)...

I'm not sure if this is the right place, but couldn't find anywhere else. I just read the Deno 2.0 blog post, showing the upcoming release schedule, and was surprised...

question