Skip to content

Commit 9da6e9a

Browse files
keller-markcarlopi
authored andcommitted
Update platform.ts
1 parent b1b835d commit 9da6e9a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/duckdb-wasm/src/platform.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ const userAgent = () => (isNode() ? 'node' : navigator.userAgent);
1919
export const isFirefox = () => userAgent().includes('Firefox');
2020
export const isSafari = () => /^((?!chrome|android).)*safari/i.test(userAgent());
2121

22+
/** Bundles have different characteristics:
23+
* - MVP: minimum viable product (uses features from first stable version of WebAssembly standard)
24+
* - EH: exception handling
25+
* - COI: cross origin isolation
26+
*/
2227
export interface DuckDBBundles {
2328
mvp: {
2429
mainModule: string;

0 commit comments

Comments
 (0)