Re: URLQuery / FormData

On Tue, Sep 10, 2013 at 3:44 PM, Domenic Denicola
<domenic@domenicdenicola.com> wrote:
> Finally, only tangentially related: what is your plan for
>
> ```js
> const q = new URLQuery();
> q.append('key', 'val1');
> q.get('key').push('val2');
> q.get('key')[999] = 'val999';
> ```

The array returned would be a copy of the underlying values and
modifying it would not modify URLQuery. Similar if we keep the name
getAll() for that.


-- 
http://annevankesteren.nl/

Received on Tuesday, 10 September 2013 15:15:24 UTC