@swc/wasm-web
Advanced tools
Comparing version 1.2.121 to 1.2.122
@@ -7,3 +7,3 @@ { | ||
"description": "wasm module for swc", | ||
"version": "1.2.121", | ||
"version": "1.2.122", | ||
"license": "Apache-2.0", | ||
@@ -10,0 +10,0 @@ "repository": { |
@@ -32,3 +32,3 @@ /* tslint:disable */ | ||
*/ | ||
export function execute(query: string, opts: any): any; | ||
export function browserslist(query: string, opts: any): any; | ||
@@ -43,3 +43,3 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module; | ||
readonly transformSync: (a: number, b: number, c: number) => number; | ||
readonly execute: (a: number, b: number, c: number) => number; | ||
readonly browserslist: (a: number, b: number, c: number) => number; | ||
readonly __wbindgen_malloc: (a: number) => number; | ||
@@ -46,0 +46,0 @@ readonly __wbindgen_realloc: (a: number, b: number, c: number) => number; |
@@ -166,6 +166,6 @@ | ||
*/ | ||
export function execute(query, opts) { | ||
export function browserslist(query, opts) { | ||
var ptr0 = passStringToWasm0(query, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); | ||
var len0 = WASM_VECTOR_LEN; | ||
var ret = wasm.execute(ptr0, len0, addHeapObject(opts)); | ||
var ret = wasm.browserslist(ptr0, len0, addHeapObject(opts)); | ||
return takeObject(ret); | ||
@@ -172,0 +172,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20932828