bbrk24

Results 79 issues of bbrk24

The implementation seems pretty straightforward: ```ts type Falsy = Zero | "" | false | null | undefined; type Truthy = Exclude; ``` `Falsy` should include `NaN`, but TypeScript does...

help wanted
type addition
core

**Bug report or Feature request?** Bug report **Version (complete output of `terser -V` or specific git commit)** terser 5.12.1 **Complete CLI command or `minify()` options used** ```bash npx terser bin/index.js...

bug

I'm mocking a protocol with a function that looks like this: ```swift func foo( completion: @escaping ( _ bar: Int, _ baz: Int, _ qux: Int ) -> Void )...

bug
good first issue

**Description** source-map-explorer splits up consecutive slashes in custom URI schemes. For example, a folder `webpack://src/` is divided into `webpack:`, `` (empty string), and `src`. **Steps to reproduce** After building a...

It seems that currently, this adds parentheses around every arrow function, such as giving: ```js arr.reduce(((e,t)=>e+t),0) ``` which could be: ```js arr.reduce((e,t)=>e+t,0) ```

feature request

This PR adds a podspec file, so that XUI is available via CocoaPods as well as Swift Package Manager.

Apparently `ChuckSomeDice` really doesn't like non-integers, as this code: ```aussie G'DAY MATE! IMPOHT ME FUNC ChuckSomeDice; ChuckSomeDice(0, 0.5); CHEERS C***! ``` outputs the following error: ```aussie thread 'main' panicked at...

Fixes #41 It turns out the error wasn't about floats per se -- `ChuckSomeDice(0, 0)` would cause the same panic, while `ChuckSomeDice(0, 1.5)` wouldn't.

For the following program: ```aussie G'DAY MATE! GIMME 5 + "foo"; GIMME "foo" + 5; GIMME "" + 5 + "foo"; CHEERS C***! ``` I would expect this output: ```...

This program: ```aussie G'DAY MATE! YA RECKON x IS A < y ~ BAIL NAH, YEAH!; z ~ GIMME z; > CHEERS C***! ``` Gives the expected errors: ``` [line...