Marek Pepke
Marek Pepke
The feature from this proposal is implemented in [LiveScript](https://livescript.net). You could use it as a playground and/or inspiration on how to handle the edge cases. Note that the LiveScript implementation...
A common use case is to use array fields with no specified indexes, e.g.: ```html ``` However, upon receiving more than one such field, e.g. `fruits[]=apple` and `fruits[]=banana`, the whole...
**Describe the bug** The position of the table header bar cannot keep up with the current position of the scroll. **To Reproduce** Steps to reproduce the behavior: 1. Go to...
### List the website(s) you're having issues: `https://paylane.pl/devzone/` and subpages, e.g. `https://paylane.pl/devzone/wstep/` ### What happens? The whole `` tag is hidden, because it matches the `.cookies-not-set:not(body)` css rule, as it...
Added support for `*` and `.` in named regexps. Fixed deleting `.next` property from possibly undefined value in test.js. Resulted error should be AssertionError, not TypeError.
`'/:test([1-9]\\d*)'` compiles to `/^\/(?:([1-9]\d(.*)))\/?$/i` but should compile to `/^\/(?:([1-9]\d*))\/?$/i` or to `/^\/(?:([1-9]\d{0,}))\/?$/i` Similar danger comes from using dots, groups and backreferences in named regular expressions, e.g. `'/:test((.)\\1+)'`, but that might...
**Describe the bug** If the cell value includes the `|` character, the cell is unnecessarily quoted. **Parsing or Formatting?** - [x] Formatting - [ ] Parsing **To Reproduce** ```js import...
It's similar to `for own`, so I wrote this in a similar fashion.
Use cases: - string comparison (alphabetic ordering) - date comparison - utilizing `valueOf` of objects I can always use `Math.min` in my code if I want, but I cannot simply...
### The problem Having a brace character in a string or in a comment breaks the behavior of the plugin. I don't know, if the problem existed before, but I...