immurl icon indicating copy to clipboard operation
immurl copied to clipboard

🔗 A tiny immutable URL library, backed by the native whatwg URL.

Results 3 immurl issues
Sort by recently updated
recently updated
newest added

Upon reviewing this code in the tutorial: ```ts const url = new ImmutableURL('https://example.com'); const newUrl2 = url.set( 'searchParams', url.searchParams.append('q', 'search-term').set('foo', 'fuz').sort() ); ``` I got the error: ```sh Argument of...

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies

For some reason this is not plug and play, likely due to inconsistencies between `node-fetch` and global fetch included in typescript. Also, Headers are not available globally so passing anything...

help wanted