Sebastian "Sebbie" Silbermann
Sebastian "Sebbie" Silbermann
Closes https://github.com/A11yance/aria-query/issues/181 Data is based on [WAI-ARIA Graphics Module 1.0](https://www.w3.org/TR/graphics-aria-1.0/) which was parsed by https://gist.github.com/eps1lon/586e9a003c4d1cf3b74a6cd943edc46d.
At first let me thank you for this awesome extension! Really levels up the GitHub experience. I'm a bit concerned about the rate limit. It seems to send a request...
That way people can discover the repository from https://www.npmjs.com/package/trusted-types. See [`package.json` `repository` field documentation](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#repository)
### Basic info: - **Node.js version:** 10.16.0 - **jsdom version:** 16.2.1 ### Minimal reproduction case https://runkit.com/eps1lon/5e6969234944ab001d7f7d5e ```js const { JSDOM } = require('jsdom'); const {window} = new JSDOM(` Submit `);...
### Basic info: - **Node.js version:** 10.23.3 - **jsdom version:** 16.14.0 ### Minimal reproduction case Originally reported in https://github.com/testing-library/react-testing-library/issues/870 https://runkit.com/eps1lon/6024f498a573fe0019c227ca ```js const {JSDOM} = require('jsdom'); const { window } =...
**Is your feature request related to a problem? Please describe.** Usage with yarn v2 (specifically the PnP part) requires quite some extra work. **Describe the solution you'd like** As far...
```js // input.js import { Add as AddIcon } from '@material-ui/icons'; AddIcon('xxx'); // expected.js "use strict"; var _Add2 = _interopRequireDefault(require("@material-ui/icons/esm/Add")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj :...
To format `.svx` files I'm using `prettier` with their built-in parser for markdown which isn't ideal since it doesn't touch code such as ```markdown export async function preload() { const...
`react-docgen` ignores original line-endings in the file and replaces them with the system wide EOL setting. Repro: https://github.com/eps1lon/issue-react-docgen-windows-eol
```diff -shallowEqualArrays([+0, -0]) === true; +shallowEqualArrays([+0, -0]) === false; -shallowEqualArrays([NaN, 0/0]) === false; +shallowEqualArrays([NaN, 0/0]) === true; ``` I'm trying to replace shallow-equal from [`fbjs` which uses `Object.is`](https://unpkg.com/[email protected]/lib/shallowEqual.js) instead of...