@xylabs/url 4.13.4 → 4.13.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,10 @@
1
- import { URL as URL_3 } from 'url';
2
-
3
- declare const URL_2: URL_3;
4
- export { URL_2 as URL }
5
-
6
- export { }
1
+ declare const BrowserUrl: {
2
+ new (url: string | URL, base?: string | URL): URL;
3
+ prototype: URL;
4
+ canParse(url: string | URL, base?: string | URL): boolean;
5
+ createObjectURL(obj: Blob | MediaSource): string;
6
+ parse(url: string | URL, base?: string | URL): URL | null;
7
+ revokeObjectURL(url: string): void;
8
+ };
9
+
10
+ export { BrowserUrl as URL };
@@ -1,6 +1,5 @@
1
- import { URL as URL_3 } from 'url';
2
-
3
- declare const URL_2: URL_3;
4
- export { URL_2 as URL }
5
-
6
- export { }
1
+ import * as url from 'url';
2
+
3
+ declare const NeutralUrl: typeof url.URL;
4
+
5
+ export { NeutralUrl as URL };
@@ -1,5 +1 @@
1
- import { URL as URL_2 } from 'node:url';
2
-
3
- export { URL_2 as URL }
4
-
5
- export { }
1
+ export { URL } from 'node:url';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/url",
3
- "version": "4.13.4",
3
+ "version": "4.13.5",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "url",
@@ -47,9 +47,9 @@
47
47
  "types": "./dist/neutral/neutral/index.d.ts",
48
48
  "devDependencies": {
49
49
  "@types/node": "^24.0.13",
50
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.7",
51
- "@xylabs/tsconfig": "^7.0.0-rc.7",
52
- "@xylabs/tsconfig-dom": "^7.0.0-rc.7",
50
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.8",
51
+ "@xylabs/tsconfig": "^7.0.0-rc.8",
52
+ "@xylabs/tsconfig-dom": "^7.0.0-rc.8",
53
53
  "typescript": "^5.8.3"
54
54
  },
55
55
  "engines": {