Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@parcel/source-map

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/source-map - npm Package Compare versions

Comparing version 2.0.0-alpha.4.8 to 2.0.0-alpha.4.9

dist/SourceMap.js

78

dist/node.js

@@ -10,3 +10,3 @@ "use strict";

var _utils = require("./utils");
var _SourceMap = _interopRequireDefault(require("./SourceMap"));

@@ -17,4 +17,5 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

class SourceMap {
class NodeSourceMap extends _SourceMap.default {
constructor() {
super();
this.sourceMapInstance = new bindings.SourceMap();

@@ -24,3 +25,3 @@ }

static generateEmptyMap(sourceName, sourceContent, lineOffset = 0) {
let map = new SourceMap();
let map = new NodeSourceMap();
map.addEmptyMap(sourceName, sourceContent, lineOffset);

@@ -30,75 +31,6 @@ return map;

addEmptyMap(sourceName, sourceContent, lineOffset = 0) {
this.sourceMapInstance.addEmptyMap(sourceName, sourceContent, lineOffset);
return this;
}
addRawMappings(mappings, sources, names, lineOffset = 0, columnOffset = 0) {
this.sourceMapInstance.addRawMappings(mappings, sources, names, lineOffset, columnOffset);
return this;
}
addBufferMappings(buffer, lineOffset = 0, columnOffset = 0) {
this.sourceMapInstance.addBufferMappings(buffer, lineOffset, columnOffset);
return this;
} // line numbers start at 1 so we have the same api as `source-map` by mozilla
addIndexedMappings(mappings, lineOffset = 0, columnOffset = 0) {
for (let mapping of mappings) {
let hasValidOriginal = mapping.original && typeof mapping.original.line === "number" && !isNaN(mapping.original.line) && typeof mapping.original.column === "number" && !isNaN(mapping.original.column);
this.sourceMapInstance.addIndexedMapping(mapping.generated.line + lineOffset - 1, mapping.generated.column + columnOffset, // $FlowFixMe
hasValidOriginal ? mapping.original.line - 1 : -1, // $FlowFixMe
hasValidOriginal ? mapping.original.column : -1, mapping.source || "", mapping.name || "");
}
return this;
}
addNames(names) {
return this.sourceMapInstance.addNames(names);
}
addSources(sources) {
return this.sourceMapInstance.addSources(sources);
}
getSourceIndex(source) {
return this.sourceMapInstance.getSourceIndex(source);
}
getNameIndex(name) {
return this.sourceMapInstance.getNameIndex(name);
}
findClosestMapping(line, column) {
return this.sourceMapInstance.findClosestMapping(line, column);
} // Remaps original positions from this map to the ones in the provided map
extends(buffer) {
this.sourceMapInstance.extends(buffer);
return this;
}
getMap() {
return this.sourceMapInstance.getMap();
}
toBuffer() {
return this.sourceMapInstance.toBuffer();
}
toVLQ() {
return this.sourceMapInstance.stringify();
}
async stringify(options) {
return (0, _utils.partialVlqMapToSourceMap)(this.toVLQ(), options);
}
}
exports.default = SourceMap;
exports.default = NodeSourceMap;
const init = Promise.resolve();
exports.init = init;

@@ -11,3 +11,3 @@ "use strict";

var _utils = require("./utils");
var _SourceMap = _interopRequireDefault(require("./SourceMap"));

@@ -40,2 +40,4 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

}
return mapping;
}

@@ -53,4 +55,5 @@

class SourceMap {
class WasmSourceMap extends _SourceMap.default {
constructor() {
super();
this.sourceMapInstance = new Module.SourceMap();

@@ -60,3 +63,3 @@ }

static generateEmptyMap(sourceName, sourceContent, lineOffset = 0) {
let map = new SourceMap();
let map = new WasmSourceMap();
map.addEmptyMap(sourceName, sourceContent, lineOffset);

@@ -66,7 +69,2 @@ return map;

addEmptyMap(sourceName, sourceContent, lineOffset = 0) {
this.sourceMapInstance.addEmptyMap(sourceName, sourceContent, lineOffset);
return this;
}
addRawMappings(mappings, sources, names, lineOffset = 0, columnOffset = 0) {

@@ -79,48 +77,12 @@ let sourcesVector = arrayToEmbind(Module.VectorString, sources);

addBufferMappings(buffer, lineOffset = 0, columnOffset = 0) {
this.sourceMapInstance.addBufferMappings(buffer, lineOffset, columnOffset);
return this;
} // line numbers start at 1 so we have the same api as `source-map` by mozilla
addIndexedMappings(mappings, lineOffset = 0, columnOffset = 0) {
for (let mapping of mappings) {
let hasValidOriginal = mapping.original && typeof mapping.original.line === "number" && !isNaN(mapping.original.line) && typeof mapping.original.column === "number" && !isNaN(mapping.original.column);
this.sourceMapInstance.addIndexedMapping(mapping.generated.line + lineOffset - 1, mapping.generated.column + columnOffset, // $FlowFixMe
hasValidOriginal ? mapping.original.line - 1 : -1, // $FlowFixMe
hasValidOriginal ? mapping.original.column : -1, mapping.source || "", mapping.name || "");
}
return this;
}
addNames(names) {
return arrayFromEmbind(this.sourceMapInstance.addNames(arrayToEmbind(Module.VectorInt, names)));
}
addSources(sources) {
return arrayFromEmbind(this.sourceMapInstance.addSources(arrayToEmbind(Module.VectorInt, sources)));
}
getSourceIndex(source) {
return this.sourceMapInstance.getSourceIndex(source);
}
getNameIndex(name) {
return this.sourceMapInstance.getNameIndex(name);
}
findClosestMapping(line, column) {
let mapping = this.sourceMapInstance.findClosestMapping(line, column);
if (mapping.generated.line === -1) return null;else {
patchMapping(mapping);
return mapping;
if (mapping.generated.line === -1) {
return null;
} else {
return this.indexedMappingToStringMapping(patchMapping(mapping));
}
}
extends(buffer) {
this.sourceMapInstance.extends(buffer);
return this;
}
getMap() {

@@ -135,6 +97,2 @@ let mappings = arrayFromEmbind(this.sourceMapInstance.getMappings(), patchMapping);

toBuffer() {
return this.sourceMapInstance.toBuffer();
}
toVLQ() {

@@ -148,9 +106,5 @@ return {

async stringify(options) {
return (0, _utils.partialVlqMapToSourceMap)(this.toVLQ(), options);
}
}
exports.default = SourceMap;
exports.default = WasmSourceMap;

@@ -157,0 +111,0 @@ function init(RawModule) {

{
"name": "@parcel/source-map",
"version": "2.0.0-alpha.4.8",
"version": "2.0.0-alpha.4.9",
"main": "./dist/node.js",

@@ -5,0 +5,0 @@ "browser": "./dist/wasm-browser.js",

@@ -8,12 +8,10 @@ // @flow

} from "./types";
import path from "path";
import { generateInlineMap, partialVlqMapToSourceMap } from "./utils";
import SourceMap from "./SourceMap";
const bindings = require("node-gyp-build")(path.join(__dirname, ".."));
export default class SourceMap {
sourceMapInstance: any;
export default class NodeSourceMap extends SourceMap {
constructor() {
super();
this.sourceMapInstance = new bindings.SourceMap();

@@ -26,114 +24,9 @@ }

lineOffset: number = 0
): SourceMap {
let map = new SourceMap();
): NodeSourceMap {
let map = new NodeSourceMap();
map.addEmptyMap(sourceName, sourceContent, lineOffset);
return map;
}
addEmptyMap(
sourceName: string,
sourceContent: string,
lineOffset: number = 0
) {
this.sourceMapInstance.addEmptyMap(sourceName, sourceContent, lineOffset);
return this;
}
addRawMappings(
mappings: string,
sources: Array<string>,
names: Array<string>,
lineOffset: number = 0,
columnOffset: number = 0
) {
this.sourceMapInstance.addRawMappings(
mappings,
sources,
names,
lineOffset,
columnOffset
);
return this;
}
addBufferMappings(
buffer: Buffer,
lineOffset: number = 0,
columnOffset: number = 0
) {
this.sourceMapInstance.addBufferMappings(buffer, lineOffset, columnOffset);
return this;
}
// line numbers start at 1 so we have the same api as `source-map` by mozilla
addIndexedMappings(
mappings: Array<IndexedMapping<string>>,
lineOffset?: number = 0,
columnOffset?: number = 0
) {
for (let mapping of mappings) {
let hasValidOriginal =
mapping.original &&
typeof mapping.original.line === "number" &&
!isNaN(mapping.original.line) &&
typeof mapping.original.column === "number" &&
!isNaN(mapping.original.column);
this.sourceMapInstance.addIndexedMapping(
mapping.generated.line + lineOffset - 1,
mapping.generated.column + columnOffset,
// $FlowFixMe
hasValidOriginal ? mapping.original.line - 1 : -1,
// $FlowFixMe
hasValidOriginal ? mapping.original.column : -1,
mapping.source || "",
mapping.name || ""
);
}
return this;
}
addNames(names: Array<string>): Array<number> {
return this.sourceMapInstance.addNames(names);
}
addSources(sources: Array<string>): Array<number> {
return this.sourceMapInstance.addSources(sources);
}
getSourceIndex(source: string): number {
return this.sourceMapInstance.getSourceIndex(source);
}
getNameIndex(name: string): number {
return this.sourceMapInstance.getNameIndex(name);
}
findClosestMapping(line: number, column: number): ?IndexedMapping<number> {
return this.sourceMapInstance.findClosestMapping(line, column);
}
// Remaps original positions from this map to the ones in the provided map
extends(buffer: Buffer) {
this.sourceMapInstance.extends(buffer);
return this;
}
getMap(): ParsedMap {
return this.sourceMapInstance.getMap();
}
toBuffer(): Buffer {
return this.sourceMapInstance.toBuffer();
}
toVLQ(): VLQMap {
return this.sourceMapInstance.stringify();
}
async stringify(options: SourceMapStringifyOptions) {
return partialVlqMapToSourceMap(this.toVLQ(), options);
}
}
export const init = Promise.resolve();

@@ -8,5 +8,4 @@ // @flow

} from "./types";
import path from "path";
import { generateInlineMap, partialVlqMapToSourceMap } from "./utils";
import SourceMap from "./SourceMap";

@@ -34,2 +33,3 @@ let Module;

}
return mapping;
}

@@ -45,6 +45,5 @@

export default class SourceMap {
sourceMapInstance: any;
export default class WasmSourceMap extends SourceMap {
constructor() {
super();
this.sourceMapInstance = new Module.SourceMap();

@@ -57,4 +56,4 @@ }

lineOffset: number = 0
): SourceMap {
let map = new SourceMap();
): WasmSourceMap {
let map = new WasmSourceMap();
map.addEmptyMap(sourceName, sourceContent, lineOffset);

@@ -64,11 +63,2 @@ return map;

addEmptyMap(
sourceName: string,
sourceContent: string,
lineOffset: number = 0
) {
this.sourceMapInstance.addEmptyMap(sourceName, sourceContent, lineOffset);
return this;
}
addRawMappings(

@@ -93,75 +83,11 @@ mappings: string,

addBufferMappings(
buffer: Buffer,
lineOffset: number = 0,
columnOffset: number = 0
) {
this.sourceMapInstance.addBufferMappings(buffer, lineOffset, columnOffset);
return this;
}
// line numbers start at 1 so we have the same api as `source-map` by mozilla
addIndexedMappings(
mappings: Array<IndexedMapping<number | string>>,
lineOffset?: number = 0,
columnOffset?: number = 0
) {
for (let mapping of mappings) {
let hasValidOriginal =
mapping.original &&
typeof mapping.original.line === "number" &&
!isNaN(mapping.original.line) &&
typeof mapping.original.column === "number" &&
!isNaN(mapping.original.column);
this.sourceMapInstance.addIndexedMapping(
mapping.generated.line + lineOffset - 1,
mapping.generated.column + columnOffset,
// $FlowFixMe
hasValidOriginal ? mapping.original.line - 1 : -1,
// $FlowFixMe
hasValidOriginal ? mapping.original.column : -1,
mapping.source || "",
mapping.name || ""
);
}
return this;
}
addNames(names: Array<string>): Array<number> {
return arrayFromEmbind(
this.sourceMapInstance.addNames(arrayToEmbind(Module.VectorInt, names))
);
}
addSources(sources: Array<string>): Array<number> {
return arrayFromEmbind(
this.sourceMapInstance.addSources(
arrayToEmbind(Module.VectorInt, sources)
)
);
}
getSourceIndex(source: string): number {
return this.sourceMapInstance.getSourceIndex(source);
}
getNameIndex(name: string): number {
return this.sourceMapInstance.getNameIndex(name);
}
findClosestMapping(line: number, column: number): ?IndexedMapping<number> {
findClosestMapping(line: number, column: number): ?IndexedMapping<string> {
let mapping = this.sourceMapInstance.findClosestMapping(line, column);
if (mapping.generated.line === -1) return null;
else {
patchMapping(mapping);
return mapping;
if (mapping.generated.line === -1) {
return null;
} else {
return this.indexedMappingToStringMapping(patchMapping(mapping));
}
}
extends(buffer: Buffer) {
this.sourceMapInstance.extends(buffer);
return this;
}
getMap(): ParsedMap {

@@ -180,6 +106,2 @@ let mappings = arrayFromEmbind(

toBuffer(): Buffer {
return this.sourceMapInstance.toBuffer();
}
toVLQ(): VLQMap {

@@ -192,9 +114,5 @@ return {

}
async stringify(options: SourceMapStringifyOptions) {
return partialVlqMapToSourceMap(this.toVLQ(), options);
}
}
export function init(RawModule) {
export function init(RawModule: any) {
return new Promise<void>((res) =>

@@ -201,0 +119,0 @@ RawModule().then((v) => {

@@ -9,5 +9,6 @@

var e;e||(e=typeof Module !== 'undefined' ? Module : {});var ca={},u;for(u in e)e.hasOwnProperty(u)&&(ca[u]=e[u]);var da="./this.program",ea=!1,fa=!1;ea="object"===typeof window;fa="function"===typeof importScripts;var x="",ha;
if(ea||fa)fa?x=self.location.href:document.currentScript&&(x=document.currentScript.src),_scriptDir&&(x=_scriptDir),0!==x.indexOf("blob:")?x=x.substr(0,x.lastIndexOf("/")+1):x="",fa&&(ha=function(a){var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)});var ia=e.print||console.log.bind(console),z=e.printErr||console.warn.bind(console);for(u in ca)ca.hasOwnProperty(u)&&(e[u]=ca[u]);ca=null;e.thisProgram&&(da=e.thisProgram);var ja;
e.wasmBinary&&(ja=e.wasmBinary);var noExitRuntime;e.noExitRuntime&&(noExitRuntime=e.noExitRuntime);"object"!==typeof WebAssembly&&z("no native wasm support detected");var A,ka=new WebAssembly.Table({initial:434,maximum:434,element:"anyfunc"}),la=!1,ma="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0;
e.wasmBinary&&(ja=e.wasmBinary);var noExitRuntime;e.noExitRuntime&&(noExitRuntime=e.noExitRuntime);"object"!==typeof WebAssembly&&z("no native wasm support detected");var A,ka=new WebAssembly.Table({initial:436,maximum:436,element:"anyfunc"}),la=!1,ma="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0;
function na(a,b,c){var d=b+c;for(c=b;a[c]&&!(c>=d);)++c;if(16<c-b&&a.subarray&&ma)return ma.decode(a.subarray(b,c));for(d="";b<c;){var g=a[b++];if(g&128){var h=a[b++]&63;if(192==(g&224))d+=String.fromCharCode((g&31)<<6|h);else{var p=a[b++]&63;g=224==(g&240)?(g&15)<<12|h<<6|p:(g&7)<<18|h<<12|p<<6|a[b++]&63;65536>g?d+=String.fromCharCode(g):(g-=65536,d+=String.fromCharCode(55296|g>>10,56320|g&1023))}}else d+=String.fromCharCode(g)}return d}function C(a){return a?na(D,a,void 0):""}

@@ -18,4 +19,4 @@ function oa(a,b,c,d){if(0<d){d=c+d-1;for(var g=0;g<a.length;++g){var h=a.charCodeAt(g);if(55296<=h&&57343>=h){var p=a.charCodeAt(++g);h=65536+((h&1023)<<10)|p&1023}if(127>=h){if(c>=d)break;b[c++]=h}else{if(2047>=h){if(c+1>=d)break;b[c++]=192|h>>6}else{if(65535>=h){if(c+2>=d)break;b[c++]=224|h>>12}else{if(c+3>=d)break;b[c++]=240|h>>18;b[c++]=128|h>>12&63}b[c++]=128|h>>6&63}b[c++]=128|h&63}}b[c]=0}}

function va(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var d=b;c=d+c-4;for(var g=0;g<a.length;++g){var h=a.charCodeAt(g);if(55296<=h&&57343>=h){var p=a.charCodeAt(++g);h=65536+((h&1023)<<10)|p&1023}F[b>>2]=h;b+=4;if(b+4>c)break}F[b>>2]=0;return b-d}function wa(a){for(var b=0,c=0;c<a.length;++c){var d=a.charCodeAt(c);55296<=d&&57343>=d&&++c;b+=4}return b}var G,H,D,E,xa,F,I,ya,za;
function Aa(a){G=a;e.HEAP8=H=new Int8Array(a);e.HEAP16=E=new Int16Array(a);e.HEAP32=F=new Int32Array(a);e.HEAPU8=D=new Uint8Array(a);e.HEAPU16=xa=new Uint16Array(a);e.HEAPU32=I=new Uint32Array(a);e.HEAPF32=ya=new Float32Array(a);e.HEAPF64=za=new Float64Array(a)}var Ba=e.INITIAL_MEMORY||16777216;e.wasmMemory?A=e.wasmMemory:A=new WebAssembly.Memory({initial:Ba/65536});A&&(G=A.buffer);Ba=G.byteLength;Aa(G);F[5676]=5265744;
function Ca(a){for(;0<a.length;){var b=a.shift();if("function"==typeof b)b();else{var c=b.Qa;"number"===typeof c?void 0===b.Fa?e.dynCall_v(c):e.dynCall_vi(c,b.Fa):c(void 0===b.Fa?null:b.Fa)}}}var Da=[],Ea=[],Fa=[],Ga=[];function Ha(){var a=e.preRun.shift();Da.unshift(a)}var J=0,Ia=null,Ja=null;e.preloadedImages={};e.preloadedAudios={};function Ka(a){if(e.onAbort)e.onAbort(a);ia(a);z(a);la=!0;throw new WebAssembly.RuntimeError("abort("+a+"). Build with -s ASSERTIONS=1 for more info.");}
function Aa(a){G=a;e.HEAP8=H=new Int8Array(a);e.HEAP16=E=new Int16Array(a);e.HEAP32=F=new Int32Array(a);e.HEAPU8=D=new Uint8Array(a);e.HEAPU16=xa=new Uint16Array(a);e.HEAPU32=I=new Uint32Array(a);e.HEAPF32=ya=new Float32Array(a);e.HEAPF64=za=new Float64Array(a)}var Ba=e.INITIAL_MEMORY||16777216;e.wasmMemory?A=e.wasmMemory:A=new WebAssembly.Memory({initial:Ba/65536,maximum:32768});A&&(G=A.buffer);Ba=G.byteLength;Aa(G);F[5680]=5265760;
function Ca(a){for(;0<a.length;){var b=a.shift();if("function"==typeof b)b(e);else{var c=b.Qa;"number"===typeof c?void 0===b.Fa?e.dynCall_v(c):e.dynCall_vi(c,b.Fa):c(void 0===b.Fa?null:b.Fa)}}}var Da=[],Ea=[],Fa=[],Ga=[];function Ha(){var a=e.preRun.shift();Da.unshift(a)}var J=0,Ia=null,Ja=null;e.preloadedImages={};e.preloadedAudios={};function Ka(a){if(e.onAbort)e.onAbort(a);ia(a);z(a);la=!0;throw new WebAssembly.RuntimeError("abort("+a+"). Build with -s ASSERTIONS=1 for more info.");}
function La(){var a=K;return String.prototype.startsWith?a.startsWith("data:application/octet-stream;base64,"):0===a.indexOf("data:application/octet-stream;base64,")}var K="source-map.wasm";if(!La()){var Ma=K;K=e.locateFile?e.locateFile(Ma,x):x+Ma}function Na(){try{if(ja)return new Uint8Array(ja);if(ha)return ha(K);throw"both async and sync fetching of the wasm failed";}catch(a){Ka(a)}}

@@ -58,3 +59,3 @@ function Oa(){return ja||!ea&&!fa||"function"!==typeof fetch?new Promise(function(a){a(Na())}):fetch(K,{credentials:"same-origin"}).then(function(a){if(!a.ok)throw"failed to load wasm binary file at '"+K+"'";return a.arrayBuffer()}).catch(function(){return Na()})}Ea.push({Qa:function(){Pa()}});function Qa(){return 0<Qa.La}var Ra={},Sa=[null,[],[]],Ta={};function Ua(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function Va(a){return this.fromWireType(I[a>>2])}var L={},M={},Wa={};

function Vb(a){var b=Array(pa(a)+1);oa(a,b,0,b.length);return b}
var Zb={b:function(a,b,c,d){Ka("Assertion failed: "+C(a)+", at: "+[b?C(b):"unknown filename",c,d?C(d):"unknown function"])},F:function(a){return Yb(a)},y:function(a){"uncaught_exception"in Qa?Qa.La++:Qa.La=1;throw a;},C:function(){e.___errno_location&&(F[e.___errno_location()>>2]=63);return-1},B:function(a,b){if(-1===a||0===b)a=-28;else{var c=Ra[a];c&&b===c.kb&&(Ra[a]=null,c.ib&&Y(c.lb));a=0}return a},l:function(a){var b=Ta[a];delete Ta[a];var c=b.Ha,d=b.ra,g=b.Ka,h=g.map(function(p){return p.Va}).concat(g.map(function(p){return p.ab}));
var Zb={b:function(a,b,c,d){Ka("Assertion failed: "+C(a)+", at: "+[b?C(b):"unknown filename",c,d?C(d):"unknown function"])},F:function(a){return Yb(a)},y:function(a){"uncaught_exception"in Qa?Qa.La++:Qa.La=1;throw a;},C:function(){e.___errno_location&&(F[e.___errno_location()>>2]=63);return-1},B:function(a,b){if(-1===(a|0)||0===b)a=-28;else{var c=Ra[a];c&&b===c.kb&&(Ra[a]=null,c.ib&&Y(c.lb));a=0}return a},l:function(a){var b=Ta[a];delete Ta[a];var c=b.Ha,d=b.ra,g=b.Ka,h=g.map(function(p){return p.Va}).concat(g.map(function(p){return p.ab}));
N([a],h,function(p){var k={};g.forEach(function(q,l){var n=p[l],v=q.Ta,w=q.Ua,f=p[l+g.length],m=q.$a,t=q.bb;k[q.Pa]={read:function(r){return n.fromWireType(v(w,r))},write:function(r,B){var y=[];m(t,r,f.toWireType(y,B));Ua(y)}}});return[{name:b.name,fromWireType:function(q){var l={},n;for(n in k)l[n]=k[n].read(q);d(q);return l},toWireType:function(q,l){for(var n in k)if(!(n in l))throw new TypeError("Missing field");var v=c();for(n in k)k[n].write(v,l[n]);null!==q&&q.push(d,v);return v},argPackAdvance:8,

@@ -75,3 +76,3 @@ readValueFromPointer:Va,pa:d}]})},w:function(a,b,c,d,g){var h=bb(c);b=P(b);O(a,{name:b,fromWireType:function(p){return!!p},toWireType:function(p,k){return k?d:g},argPackAdvance:8,readValueFromPointer:function(p){if(1===c)var k=H;else if(2===c)k=E;else if(4===c)k=F;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(k[p>>h])},pa:null})},g:function(a,b,c,d,g,h,p,k,q,l,n,v,w){n=P(n);h=X(g,h);k&&(k=X(p,k));l&&(l=X(q,l));w=X(v,w);var f=Xa(n);ob(f,function(){Fb("Cannot construct "+

c);var n=h(l),v=Yb(4+n+b);I[v>>2]=n>>k;g(l,v+4,n+b);null!==q&&q.push(Y,v);return v},argPackAdvance:8,readValueFromPointer:Va,pa:function(q){Y(q)}})},j:function(a,b,c,d,g,h){Ta[a]={name:P(b),Ha:X(c,d),ra:X(g,h),Ka:[]}},i:function(a,b,c,d,g,h,p,k,q,l){Ta[a].Ka.push({Pa:P(b),Va:c,Ta:X(d,g),Ua:h,ab:p,$a:X(k,q),bb:l})},x:function(a,b){b=P(b);O(a,{jb:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},q:Jb,r:function(a){4<a&&(Z[a].Ia+=1)},h:function(a,b){var c=M[a];void 0===
c&&T("_emval_take_value has unknown type "+Db(a));a=c.readValueFromPointer(b);return tb(a)},p:function(){Ka()},u:function(a,b,c){D.copyWithin(a,b,b+c)},e:function(a){var b=D.length;if(2147418112<a)return!1;for(var c=1;4>=c;c*=2){var d=b*(1+.2/c);d=Math.min(d,a+100663296);d=Math.max(16777216,a,d);0<d%65536&&(d+=65536-d%65536);a:{try{A.grow(Math.min(2147418112,d)-G.byteLength+65535>>16);Aa(A.buffer);var g=1;break a}catch(h){}g=void 0}if(g)return!0}return!1},D:function(a,b){var c=0;Nb().forEach(function(d,
c&&T("_emval_take_value has unknown type "+Db(a));a=c.readValueFromPointer(b);return tb(a)},p:function(){Ka()},u:function(a,b,c){D.copyWithin(a,b,b+c)},e:function(a){var b=D.length;if(2147483648<a)return!1;for(var c=1;4>=c;c*=2){var d=b*(1+.2/c);d=Math.min(d,a+100663296);d=Math.max(16777216,a,d);0<d%65536&&(d+=65536-d%65536);a:{try{A.grow(Math.min(2147483648,d)-G.byteLength+65535>>>16);Aa(A.buffer);var g=1;break a}catch(h){}g=void 0}if(g)return!0}return!1},D:function(a,b){var c=0;Nb().forEach(function(d,
g){var h=b+c;g=F[a+4*g>>2]=h;for(h=0;h<d.length;++h)H[g++>>0]=d.charCodeAt(h);H[g>>0]=0;c+=d.length+1});return 0},E:function(a,b){var c=Nb();F[a>>2]=c.length;var d=0;c.forEach(function(g){d+=g.length+1});F[b>>2]=d;return 0},z:function(){return 0},s:function(){},o:function(a,b,c,d){for(var g=0,h=0;h<c;h++){for(var p=F[b+8*h>>2],k=F[b+(8*h+4)>>2],q=0;q<k;q++){var l=D[p+q],n=Sa[a];0===l||10===l?((1===a?ia:z)(na(n,0)),n.length=0):n.push(l)}g+=k}F[d>>2]=g;return 0},memory:A,t:function(){},A:function(a,

@@ -82,3 +83,3 @@ b,c,d){return Ub(a,b,c,d)},table:ka},$b=function(){function a(g){e.asm=g.exports;J--;e.monitorRunDependencies&&e.monitorRunDependencies(J);0==J&&(null!==Ia&&(clearInterval(Ia),Ia=null),Ja&&(g=Ja,Ja=null,g()))}function b(g){a(g.instance)}function c(g){return Oa().then(function(h){return WebAssembly.instantiate(h,d)}).then(g,function(h){z("failed to asynchronously prepare wasm: "+h);Ka(h)})}var d={a:Zb};J++;e.monitorRunDependencies&&e.monitorRunDependencies(J);if(e.instantiateWasm)try{return e.instantiateWasm(d,

e.dynCall_ii=function(){return(e.dynCall_ii=e.asm.L).apply(null,arguments)};e.dynCall_vi=function(){return(e.dynCall_vi=e.asm.M).apply(null,arguments)};e.dynCall_viiiiii=function(){return(e.dynCall_viiiiii=e.asm.N).apply(null,arguments)};e.dynCall_viiii=function(){return(e.dynCall_viiii=e.asm.O).apply(null,arguments)};e.dynCall_viiiiiii=function(){return(e.dynCall_viiiiiii=e.asm.P).apply(null,arguments)};e.dynCall_vii=function(){return(e.dynCall_vii=e.asm.Q).apply(null,arguments)};
e.dynCall_viii=function(){return(e.dynCall_viii=e.asm.R).apply(null,arguments)};e.dynCall_iii=function(){return(e.dynCall_iii=e.asm.S).apply(null,arguments)};e.dynCall_i=function(){return(e.dynCall_i=e.asm.T).apply(null,arguments)};e.dynCall_viiiii=function(){return(e.dynCall_viiiii=e.asm.U).apply(null,arguments)};e.dynCall_viiiiiiii=function(){return(e.dynCall_viiiiiiii=e.asm.V).apply(null,arguments)};e.dynCall_iiii=function(){return(e.dynCall_iiii=e.asm.W).apply(null,arguments)};
e.dynCall_iii=function(){return(e.dynCall_iii=e.asm.R).apply(null,arguments)};e.dynCall_viii=function(){return(e.dynCall_viii=e.asm.S).apply(null,arguments)};e.dynCall_i=function(){return(e.dynCall_i=e.asm.T).apply(null,arguments)};e.dynCall_viiiii=function(){return(e.dynCall_viiiii=e.asm.U).apply(null,arguments)};e.dynCall_viiiiiiii=function(){return(e.dynCall_viiiiiiii=e.asm.V).apply(null,arguments)};e.dynCall_iiii=function(){return(e.dynCall_iiii=e.asm.W).apply(null,arguments)};
e.dynCall_iiiii=function(){return(e.dynCall_iiiii=e.asm.X).apply(null,arguments)};e.dynCall_iiiiiii=function(){return(e.dynCall_iiiiiii=e.asm.Y).apply(null,arguments)};e.dynCall_v=function(){return(e.dynCall_v=e.asm.Z).apply(null,arguments)};e.dynCall_viijii=function(){return(e.dynCall_viijii=e.asm._).apply(null,arguments)};e.dynCall_iiiiiiiii=function(){return(e.dynCall_iiiiiiiii=e.asm.$).apply(null,arguments)};e.dynCall_iiiiii=function(){return(e.dynCall_iiiiii=e.asm.aa).apply(null,arguments)};

@@ -85,0 +86,0 @@ e.dynCall_iiiiiiii=function(){return(e.dynCall_iiiiiiii=e.asm.ba).apply(null,arguments)};e.dynCall_iiiiiijj=function(){return(e.dynCall_iiiiiijj=e.asm.ca).apply(null,arguments)};e.dynCall_iiiiij=function(){return(e.dynCall_iiiiij=e.asm.da).apply(null,arguments)};e.dynCall_iiiiid=function(){return(e.dynCall_iiiiid=e.asm.ea).apply(null,arguments)};e.dynCall_iiiiijj=function(){return(e.dynCall_iiiiijj=e.asm.fa).apply(null,arguments)};

@@ -9,5 +9,6 @@

var e;e||(e=typeof Module !== 'undefined' ? Module : {});var ba={},u;for(u in e)e.hasOwnProperty(u)&&(ba[u]=e[u]);var ca="./this.program",da="",ea,fa,ha,ia;da=__dirname+"/";ea=function(a){ha||(ha=require("fs"));ia||(ia=require("path"));a=ia.normalize(a);return ha.readFileSync(a,null)};fa=function(a){a=ea(a);a.buffer||(a=new Uint8Array(a));a.buffer||x("Assertion failed: undefined");return a};1<process.argv.length&&(ca=process.argv[1].replace(/\\/g,"/"));process.argv.slice(2);
process.on("uncaughtException",function(a){throw a;});process.on("unhandledRejection",x);e.inspect=function(){return"[Emscripten Module object]"};var ja=e.print||console.log.bind(console),z=e.printErr||console.warn.bind(console);for(u in ba)ba.hasOwnProperty(u)&&(e[u]=ba[u]);ba=null;e.thisProgram&&(ca=e.thisProgram);var ka;e.wasmBinary&&(ka=e.wasmBinary);var noExitRuntime;e.noExitRuntime&&(noExitRuntime=e.noExitRuntime);"object"!==typeof WebAssembly&&z("no native wasm support detected");
var A,la=new WebAssembly.Table({initial:434,maximum:434,element:"anyfunc"}),ma=!1,na="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0;
var A,la=new WebAssembly.Table({initial:436,maximum:436,element:"anyfunc"}),ma=!1,na="undefined"!==typeof TextDecoder?new TextDecoder("utf8"):void 0;
function oa(a,b,c){var d=b+c;for(c=b;a[c]&&!(c>=d);)++c;if(16<c-b&&a.subarray&&na)return na.decode(a.subarray(b,c));for(d="";b<c;){var g=a[b++];if(g&128){var h=a[b++]&63;if(192==(g&224))d+=String.fromCharCode((g&31)<<6|h);else{var p=a[b++]&63;g=224==(g&240)?(g&15)<<12|h<<6|p:(g&7)<<18|h<<12|p<<6|a[b++]&63;65536>g?d+=String.fromCharCode(g):(g-=65536,d+=String.fromCharCode(55296|g>>10,56320|g&1023))}}else d+=String.fromCharCode(g)}return d}function C(a){return a?oa(D,a,void 0):""}

@@ -18,4 +19,4 @@ function pa(a,b,c,d){if(0<d){d=c+d-1;for(var g=0;g<a.length;++g){var h=a.charCodeAt(g);if(55296<=h&&57343>=h){var p=a.charCodeAt(++g);h=65536+((h&1023)<<10)|p&1023}if(127>=h){if(c>=d)break;b[c++]=h}else{if(2047>=h){if(c+1>=d)break;b[c++]=192|h>>6}else{if(65535>=h){if(c+2>=d)break;b[c++]=224|h>>12}else{if(c+3>=d)break;b[c++]=240|h>>18;b[c++]=128|h>>12&63}b[c++]=128|h>>6&63}b[c++]=128|h&63}}b[c]=0}}

function wa(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var d=b;c=d+c-4;for(var g=0;g<a.length;++g){var h=a.charCodeAt(g);if(55296<=h&&57343>=h){var p=a.charCodeAt(++g);h=65536+((h&1023)<<10)|p&1023}F[b>>2]=h;b+=4;if(b+4>c)break}F[b>>2]=0;return b-d}function xa(a){for(var b=0,c=0;c<a.length;++c){var d=a.charCodeAt(c);55296<=d&&57343>=d&&++c;b+=4}return b}var G,H,D,E,ya,F,I,za,Aa;
function Ba(a){G=a;e.HEAP8=H=new Int8Array(a);e.HEAP16=E=new Int16Array(a);e.HEAP32=F=new Int32Array(a);e.HEAPU8=D=new Uint8Array(a);e.HEAPU16=ya=new Uint16Array(a);e.HEAPU32=I=new Uint32Array(a);e.HEAPF32=za=new Float32Array(a);e.HEAPF64=Aa=new Float64Array(a)}var Ca=e.INITIAL_MEMORY||16777216;e.wasmMemory?A=e.wasmMemory:A=new WebAssembly.Memory({initial:Ca/65536});A&&(G=A.buffer);Ca=G.byteLength;Ba(G);F[5676]=5265744;
function Da(a){for(;0<a.length;){var b=a.shift();if("function"==typeof b)b();else{var c=b.Qa;"number"===typeof c?void 0===b.Fa?e.dynCall_v(c):e.dynCall_vi(c,b.Fa):c(void 0===b.Fa?null:b.Fa)}}}var Ea=[],Fa=[],Ga=[],Ha=[];function Ia(){var a=e.preRun.shift();Ea.unshift(a)}var J=0,Ja=null,Ka=null;e.preloadedImages={};e.preloadedAudios={};function x(a){if(e.onAbort)e.onAbort(a);ja(a);z(a);ma=!0;throw new WebAssembly.RuntimeError("abort("+a+"). Build with -s ASSERTIONS=1 for more info.");}
function Ba(a){G=a;e.HEAP8=H=new Int8Array(a);e.HEAP16=E=new Int16Array(a);e.HEAP32=F=new Int32Array(a);e.HEAPU8=D=new Uint8Array(a);e.HEAPU16=ya=new Uint16Array(a);e.HEAPU32=I=new Uint32Array(a);e.HEAPF32=za=new Float32Array(a);e.HEAPF64=Aa=new Float64Array(a)}var Ca=e.INITIAL_MEMORY||16777216;e.wasmMemory?A=e.wasmMemory:A=new WebAssembly.Memory({initial:Ca/65536,maximum:32768});A&&(G=A.buffer);Ca=G.byteLength;Ba(G);F[5680]=5265760;
function Da(a){for(;0<a.length;){var b=a.shift();if("function"==typeof b)b(e);else{var c=b.Qa;"number"===typeof c?void 0===b.Fa?e.dynCall_v(c):e.dynCall_vi(c,b.Fa):c(void 0===b.Fa?null:b.Fa)}}}var Ea=[],Fa=[],Ga=[],Ha=[];function Ia(){var a=e.preRun.shift();Ea.unshift(a)}var J=0,Ja=null,Ka=null;e.preloadedImages={};e.preloadedAudios={};function x(a){if(e.onAbort)e.onAbort(a);ja(a);z(a);ma=!0;throw new WebAssembly.RuntimeError("abort("+a+"). Build with -s ASSERTIONS=1 for more info.");}
function La(){var a=Ma;return String.prototype.startsWith?a.startsWith("data:application/octet-stream;base64,"):0===a.indexOf("data:application/octet-stream;base64,")}var Ma="source-map.wasm";if(!La()){var Na=Ma;Ma=e.locateFile?e.locateFile(Na,da):da+Na}function Oa(){return new Promise(function(a){a:{try{if(ka){var b=new Uint8Array(ka);break a}if(fa){b=fa(Ma);break a}throw"both async and sync fetching of the wasm failed";}catch(c){x(c)}b=void 0}a(b)})}Fa.push({Qa:function(){Pa()}});

@@ -57,3 +58,3 @@ function Qa(){return 0<Qa.La}var Ra={},Sa=[null,[],[]],Ta={};function Ua(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function Va(a){return this.fromWireType(I[a>>2])}var K={},L={},Wa={};function Xa(a){if(void 0===a)return"_unknown";a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?"_"+a:a}function Ya(a,b){a=Xa(a);return(new Function("body","return function "+a+'() {\n "use strict"; return body.apply(this, arguments);\n};\n'))(b)}

function Vb(a){var b=Array(qa(a)+1);pa(a,b,0,b.length);return b}
var Zb={b:function(a,b,c,d){x("Assertion failed: "+C(a)+", at: "+[b?C(b):"unknown filename",c,d?C(d):"unknown function"])},F:function(a){return Yb(a)},y:function(a){"uncaught_exception"in Qa?Qa.La++:Qa.La=1;throw a;},C:function(){e.___errno_location&&(F[e.___errno_location()>>2]=63);return-1},B:function(a,b){if(-1===a||0===b)a=-28;else{var c=Ra[a];c&&b===c.kb&&(Ra[a]=null,c.ib&&X(c.lb));a=0}return a},l:function(a){var b=Ta[a];delete Ta[a];var c=b.Ha,d=b.ra,g=b.Ka,h=g.map(function(p){return p.Va}).concat(g.map(function(p){return p.ab}));
var Zb={b:function(a,b,c,d){x("Assertion failed: "+C(a)+", at: "+[b?C(b):"unknown filename",c,d?C(d):"unknown function"])},F:function(a){return Yb(a)},y:function(a){"uncaught_exception"in Qa?Qa.La++:Qa.La=1;throw a;},C:function(){e.___errno_location&&(F[e.___errno_location()>>2]=63);return-1},B:function(a,b){if(-1===(a|0)||0===b)a=-28;else{var c=Ra[a];c&&b===c.kb&&(Ra[a]=null,c.ib&&X(c.lb));a=0}return a},l:function(a){var b=Ta[a];delete Ta[a];var c=b.Ha,d=b.ra,g=b.Ka,h=g.map(function(p){return p.Va}).concat(g.map(function(p){return p.ab}));
M([a],h,function(p){var k={};g.forEach(function(q,l){var n=p[l],v=q.Ta,w=q.Ua,f=p[l+g.length],m=q.$a,t=q.bb;k[q.Pa]={read:function(r){return n.fromWireType(v(w,r))},write:function(r,B){var y=[];m(t,r,f.toWireType(y,B));Ua(y)}}});return[{name:b.name,fromWireType:function(q){var l={},n;for(n in k)l[n]=k[n].read(q);d(q);return l},toWireType:function(q,l){for(var n in k)if(!(n in l))throw new TypeError("Missing field");var v=c();for(n in k)k[n].write(v,l[n]);null!==q&&q.push(d,v);return v},argPackAdvance:8,

@@ -74,3 +75,3 @@ readValueFromPointer:Va,pa:d}]})},w:function(a,b,c,d,g){var h=bb(c);b=O(b);N(a,{name:b,fromWireType:function(p){return!!p},toWireType:function(p,k){return k?d:g},argPackAdvance:8,readValueFromPointer:function(p){if(1===c)var k=H;else if(2===c)k=E;else if(4===c)k=F;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(k[p>>h])},pa:null})},g:function(a,b,c,d,g,h,p,k,q,l,n,v,w){n=O(n);h=W(g,h);k&&(k=W(p,k));l&&(l=W(q,l));w=W(v,w);var f=Xa(n);ob(f,function(){Fb("Cannot construct "+

h(l),v=Yb(4+n+b);I[v>>2]=n>>k;g(l,v+4,n+b);null!==q&&q.push(X,v);return v},argPackAdvance:8,readValueFromPointer:Va,pa:function(q){X(q)}})},j:function(a,b,c,d,g,h){Ta[a]={name:O(b),Ha:W(c,d),ra:W(g,h),Ka:[]}},i:function(a,b,c,d,g,h,p,k,q,l){Ta[a].Ka.push({Pa:O(b),Va:c,Ta:W(d,g),Ua:h,ab:p,$a:W(k,q),bb:l})},x:function(a,b){b=O(b);N(a,{jb:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},q:Jb,r:function(a){4<a&&(Y[a].Ia+=1)},h:function(a,b){var c=L[a];void 0===c&&S("_emval_take_value has unknown type "+
Db(a));a=c.readValueFromPointer(b);return tb(a)},p:function(){x()},u:function(a,b,c){D.copyWithin(a,b,b+c)},e:function(a){var b=D.length;if(2147418112<a)return!1;for(var c=1;4>=c;c*=2){var d=b*(1+.2/c);d=Math.min(d,a+100663296);d=Math.max(16777216,a,d);0<d%65536&&(d+=65536-d%65536);a:{try{A.grow(Math.min(2147418112,d)-G.byteLength+65535>>16);Ba(A.buffer);var g=1;break a}catch(h){}g=void 0}if(g)return!0}return!1},D:function(a,b){var c=0;Nb().forEach(function(d,g){var h=b+c;g=F[a+4*g>>2]=h;for(h=0;h<
Db(a));a=c.readValueFromPointer(b);return tb(a)},p:function(){x()},u:function(a,b,c){D.copyWithin(a,b,b+c)},e:function(a){var b=D.length;if(2147483648<a)return!1;for(var c=1;4>=c;c*=2){var d=b*(1+.2/c);d=Math.min(d,a+100663296);d=Math.max(16777216,a,d);0<d%65536&&(d+=65536-d%65536);a:{try{A.grow(Math.min(2147483648,d)-G.byteLength+65535>>>16);Ba(A.buffer);var g=1;break a}catch(h){}g=void 0}if(g)return!0}return!1},D:function(a,b){var c=0;Nb().forEach(function(d,g){var h=b+c;g=F[a+4*g>>2]=h;for(h=0;h<
d.length;++h)H[g++>>0]=d.charCodeAt(h);H[g>>0]=0;c+=d.length+1});return 0},E:function(a,b){var c=Nb();F[a>>2]=c.length;var d=0;c.forEach(function(g){d+=g.length+1});F[b>>2]=d;return 0},z:function(){return 0},s:function(){},o:function(a,b,c,d){for(var g=0,h=0;h<c;h++){for(var p=F[b+8*h>>2],k=F[b+(8*h+4)>>2],q=0;q<k;q++){var l=D[p+q],n=Sa[a];0===l||10===l?((1===a?ja:z)(oa(n,0)),n.length=0):n.push(l)}g+=k}F[d>>2]=g;return 0},memory:A,t:function(){},A:function(a,b,c,d){return Ub(a,b,c,d)},table:la},$b=

@@ -81,3 +82,3 @@ function(){function a(g){e.asm=g.exports;J--;e.monitorRunDependencies&&e.monitorRunDependencies(J);0==J&&(null!==Ja&&(clearInterval(Ja),Ja=null),Ka&&(g=Ka,Ka=null,g()))}function b(g){a(g.instance)}function c(g){return Oa().then(function(h){return WebAssembly.instantiate(h,d)}).then(g,function(h){z("failed to asynchronously prepare wasm: "+h);x(h)})}var d={a:Zb};J++;e.monitorRunDependencies&&e.monitorRunDependencies(J);if(e.instantiateWasm)try{return e.instantiateWasm(d,a)}catch(g){return z("Module.instantiateWasm callback failed with error: "+

e.dynCall_ii=function(){return(e.dynCall_ii=e.asm.L).apply(null,arguments)};e.dynCall_vi=function(){return(e.dynCall_vi=e.asm.M).apply(null,arguments)};e.dynCall_viiiiii=function(){return(e.dynCall_viiiiii=e.asm.N).apply(null,arguments)};e.dynCall_viiii=function(){return(e.dynCall_viiii=e.asm.O).apply(null,arguments)};e.dynCall_viiiiiii=function(){return(e.dynCall_viiiiiii=e.asm.P).apply(null,arguments)};e.dynCall_vii=function(){return(e.dynCall_vii=e.asm.Q).apply(null,arguments)};
e.dynCall_viii=function(){return(e.dynCall_viii=e.asm.R).apply(null,arguments)};e.dynCall_iii=function(){return(e.dynCall_iii=e.asm.S).apply(null,arguments)};e.dynCall_i=function(){return(e.dynCall_i=e.asm.T).apply(null,arguments)};e.dynCall_viiiii=function(){return(e.dynCall_viiiii=e.asm.U).apply(null,arguments)};e.dynCall_viiiiiiii=function(){return(e.dynCall_viiiiiiii=e.asm.V).apply(null,arguments)};e.dynCall_iiii=function(){return(e.dynCall_iiii=e.asm.W).apply(null,arguments)};
e.dynCall_iii=function(){return(e.dynCall_iii=e.asm.R).apply(null,arguments)};e.dynCall_viii=function(){return(e.dynCall_viii=e.asm.S).apply(null,arguments)};e.dynCall_i=function(){return(e.dynCall_i=e.asm.T).apply(null,arguments)};e.dynCall_viiiii=function(){return(e.dynCall_viiiii=e.asm.U).apply(null,arguments)};e.dynCall_viiiiiiii=function(){return(e.dynCall_viiiiiiii=e.asm.V).apply(null,arguments)};e.dynCall_iiii=function(){return(e.dynCall_iiii=e.asm.W).apply(null,arguments)};
e.dynCall_iiiii=function(){return(e.dynCall_iiiii=e.asm.X).apply(null,arguments)};e.dynCall_iiiiiii=function(){return(e.dynCall_iiiiiii=e.asm.Y).apply(null,arguments)};e.dynCall_v=function(){return(e.dynCall_v=e.asm.Z).apply(null,arguments)};e.dynCall_viijii=function(){return(e.dynCall_viijii=e.asm._).apply(null,arguments)};e.dynCall_iiiiiiiii=function(){return(e.dynCall_iiiiiiiii=e.asm.$).apply(null,arguments)};e.dynCall_iiiiii=function(){return(e.dynCall_iiiiii=e.asm.aa).apply(null,arguments)};

@@ -84,0 +85,0 @@ e.dynCall_iiiiiiii=function(){return(e.dynCall_iiiiiiii=e.asm.ba).apply(null,arguments)};e.dynCall_iiiiiijj=function(){return(e.dynCall_iiiiiijj=e.asm.ca).apply(null,arguments)};e.dynCall_iiiiij=function(){return(e.dynCall_iiiiij=e.asm.da).apply(null,arguments)};e.dynCall_iiiiid=function(){return(e.dynCall_iiiiid=e.asm.ea).apply(null,arguments)};e.dynCall_iiiiijj=function(){return(e.dynCall_iiiiijj=e.asm.fa).apply(null,arguments)};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc