Marius

Results 9 comments of Marius

It doesn't seem to me that is the purpose of this library. Even though it has a package internal `stringify` method it doesn't implement the specifics of `innerText`.

my mistake, it wasn't `String#replace` but `String#split` when using regular expressions. [here](https://github.com/es-shims/es5-shim/blob/master/es5-shim.js#L1819) you can find the exact line: `lastIndex = match.index + match[0].length`. I cannot attest whether it's the same...

unfortunately, i've seen this bug occur on non-empty strings, too. i think the question is whether or not the regex matches _zero_ or more of something. for example this yields...

This seems to be failing again in `[email protected]`. My current `jest.config.js`: ```js module.exports = { setupFiles: ["./jest.setup.js"], ... } ``` and now the mock: ```js /** * jest's jsdom impl...

The client-side decoder expects server-rendered JSON to be encoded. The client first reverses the conversion and only then parses to JSON. The server should mirror the decoder. Example: ```php str_replace(['&',...

I'd like to change the API of `useOutsideClick` and make the third argument an options object extending the [`AddEventListenerOptions`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) interface to include the existing option `when`. That way the user...

Related issues: #201 , #135

Hello, the issue has been dormant for 3+ years now. Can anyone confirm the performance gains of Bluebird are actually worth the maintenance cost (#183 , #201)? Is there any...