@xyo-network/hash
Advanced tools
Comparing version 2.109.1 to 2.110.0
@@ -1,5 +0,5 @@ | ||
import { PayloadHasher } from './PayloadHasher'; | ||
import { PayloadHasher } from './PayloadHasher.js'; | ||
export declare class BrowserPayloadHasher extends PayloadHasher { | ||
static createBrowserWorker: (url?: URL) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createBrowserWorker: (url?: URL) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
static jsHashWorkerUrl: URL | undefined; | ||
@@ -6,0 +6,0 @@ static subtleHashWorkerUrl: URL | undefined; |
@@ -1,2 +0,2 @@ | ||
export declare const createBrowserWorker: (url?: URL) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
export declare const createBrowserWorker: (url?: URL) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
//# sourceMappingURL=createBrowserWorker.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export declare const createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
export declare const createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
//# sourceMappingURL=createNodeWorker.d.ts.map |
@@ -1,5 +0,5 @@ | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher'; | ||
export * from './removeEmptyFields'; | ||
export * from './removeFields'; | ||
export * from './sortFields'; | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher.js'; | ||
export * from './removeEmptyFields.js'; | ||
export * from './removeFields.js'; | ||
export * from './sortFields.js'; | ||
//# sourceMappingURL=index-browser.d.ts.map |
@@ -1,6 +0,6 @@ | ||
export * from './hasEmptyFields'; | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher'; | ||
export * from './removeEmptyFields'; | ||
export * from './removeFields'; | ||
export * from './sortFields'; | ||
export * from './hasEmptyFields.js'; | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher.js'; | ||
export * from './removeEmptyFields.js'; | ||
export * from './removeFields.js'; | ||
export * from './sortFields.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,5 +0,5 @@ | ||
import { PayloadHasher } from './PayloadHasher'; | ||
import { PayloadHasher } from './PayloadHasher.js'; | ||
export declare class NodePayloadHasher extends PayloadHasher { | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
} | ||
//# sourceMappingURL=NodePayloadHasher.d.ts.map |
@@ -5,2 +5,6 @@ import { Hash } from '@xylabs/hex'; | ||
import { WasmSupport } from '@xyo-network/wasm'; | ||
export type WorkerFunction = ((...args: any[]) => any) | (() => any); | ||
export type WorkerModule<Keys extends string> = { | ||
[key in Keys]: WorkerFunction; | ||
}; | ||
export declare class PayloadHasher<T extends EmptyObject = EmptyObject> extends ObjectWrapper<T> { | ||
@@ -24,3 +28,3 @@ static allowHashPooling: boolean; | ||
private static get wasmHashPool(); | ||
static createWorker(url?: URL, func?: () => unknown): import("@xylabs/threads/dist/types/master").Worker; | ||
static createWorker(url?: URL, func?: () => unknown): import("@xylabs/threads/observable").Worker; | ||
static filterExcludeByHash<T extends EmptyObject>(objs: T[] | undefined, hash: Hash[] | Hash): Promise<T[]>; | ||
@@ -27,0 +31,0 @@ static filterIncludeByHash<T extends EmptyObject>(objs: T[] | undefined, hash: Hash[] | Hash): Promise<T[]>; |
@@ -1,4 +0,4 @@ | ||
export * from './jsHashNode'; | ||
export * from './subtleHashNode'; | ||
export * from './wasmHashNode'; | ||
export * from './jsHashNode.js'; | ||
export * from './subtleHashNode.js'; | ||
export * from './wasmHashNode.js'; | ||
//# sourceMappingURL=index.d.ts.map |
// src/worker/jsHash.ts | ||
import { asHash } from "@xylabs/hex"; | ||
import { expose } from "@xylabs/threads/worker"; | ||
import { expose } from "@xylabs/threads"; | ||
import shajs from "sha.js"; | ||
@@ -5,0 +5,0 @@ expose({ |
// src/worker/subtleHash.ts | ||
import { subtle } from "@xylabs/platform"; | ||
import { expose } from "@xylabs/threads/worker"; | ||
import { expose } from "@xylabs/threads"; | ||
expose({ | ||
@@ -5,0 +5,0 @@ async hash(data) { |
// src/worker/wasmHash.ts | ||
import { asHash } from "@xylabs/hex"; | ||
import { expose } from "@xylabs/threads/worker"; | ||
import { expose } from "@xylabs/threads"; | ||
import { sha256 } from "hash-wasm"; | ||
@@ -5,0 +5,0 @@ expose({ |
@@ -1,5 +0,5 @@ | ||
import { PayloadHasher } from './PayloadHasher'; | ||
import { PayloadHasher } from './PayloadHasher.js'; | ||
export declare class BrowserPayloadHasher extends PayloadHasher { | ||
static createBrowserWorker: (url?: URL) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createBrowserWorker: (url?: URL) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
static jsHashWorkerUrl: URL | undefined; | ||
@@ -6,0 +6,0 @@ static subtleHashWorkerUrl: URL | undefined; |
@@ -1,2 +0,2 @@ | ||
export declare const createBrowserWorker: (url?: URL) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
export declare const createBrowserWorker: (url?: URL) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
//# sourceMappingURL=createBrowserWorker.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export declare const createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
export declare const createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
//# sourceMappingURL=createNodeWorker.d.ts.map |
@@ -1,5 +0,5 @@ | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher'; | ||
export * from './removeEmptyFields'; | ||
export * from './removeFields'; | ||
export * from './sortFields'; | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher.js'; | ||
export * from './removeEmptyFields.js'; | ||
export * from './removeFields.js'; | ||
export * from './sortFields.js'; | ||
//# sourceMappingURL=index-browser.d.ts.map |
@@ -1,6 +0,6 @@ | ||
export * from './hasEmptyFields'; | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher'; | ||
export * from './removeEmptyFields'; | ||
export * from './removeFields'; | ||
export * from './sortFields'; | ||
export * from './hasEmptyFields.js'; | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher.js'; | ||
export * from './removeEmptyFields.js'; | ||
export * from './removeFields.js'; | ||
export * from './sortFields.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,5 +0,5 @@ | ||
import { PayloadHasher } from './PayloadHasher'; | ||
import { PayloadHasher } from './PayloadHasher.js'; | ||
export declare class NodePayloadHasher extends PayloadHasher { | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
} | ||
//# sourceMappingURL=NodePayloadHasher.d.ts.map |
@@ -5,2 +5,6 @@ import { Hash } from '@xylabs/hex'; | ||
import { WasmSupport } from '@xyo-network/wasm'; | ||
export type WorkerFunction = ((...args: any[]) => any) | (() => any); | ||
export type WorkerModule<Keys extends string> = { | ||
[key in Keys]: WorkerFunction; | ||
}; | ||
export declare class PayloadHasher<T extends EmptyObject = EmptyObject> extends ObjectWrapper<T> { | ||
@@ -24,3 +28,3 @@ static allowHashPooling: boolean; | ||
private static get wasmHashPool(); | ||
static createWorker(url?: URL, func?: () => unknown): import("@xylabs/threads/dist/types/master").Worker; | ||
static createWorker(url?: URL, func?: () => unknown): import("@xylabs/threads/observable").Worker; | ||
static filterExcludeByHash<T extends EmptyObject>(objs: T[] | undefined, hash: Hash[] | Hash): Promise<T[]>; | ||
@@ -27,0 +31,0 @@ static filterIncludeByHash<T extends EmptyObject>(objs: T[] | undefined, hash: Hash[] | Hash): Promise<T[]>; |
@@ -1,4 +0,4 @@ | ||
export * from './jsHashNode'; | ||
export * from './subtleHashNode'; | ||
export * from './wasmHashNode'; | ||
export * from './jsHashNode.js'; | ||
export * from './subtleHashNode.js'; | ||
export * from './wasmHashNode.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,5 +0,5 @@ | ||
import { PayloadHasher } from './PayloadHasher'; | ||
import { PayloadHasher } from './PayloadHasher.js'; | ||
export declare class BrowserPayloadHasher extends PayloadHasher { | ||
static createBrowserWorker: (url?: URL) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createBrowserWorker: (url?: URL) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
static jsHashWorkerUrl: URL | undefined; | ||
@@ -6,0 +6,0 @@ static subtleHashWorkerUrl: URL | undefined; |
@@ -1,2 +0,2 @@ | ||
export declare const createBrowserWorker: (url?: URL) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
export declare const createBrowserWorker: (url?: URL) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
//# sourceMappingURL=createBrowserWorker.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export declare const createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
export declare const createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
//# sourceMappingURL=createNodeWorker.d.ts.map |
@@ -1,5 +0,5 @@ | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher'; | ||
export * from './removeEmptyFields'; | ||
export * from './removeFields'; | ||
export * from './sortFields'; | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher.js'; | ||
export * from './removeEmptyFields.js'; | ||
export * from './removeFields.js'; | ||
export * from './sortFields.js'; | ||
//# sourceMappingURL=index-browser.d.ts.map |
@@ -1,6 +0,6 @@ | ||
export * from './hasEmptyFields'; | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher'; | ||
export * from './removeEmptyFields'; | ||
export * from './removeFields'; | ||
export * from './sortFields'; | ||
export * from './hasEmptyFields.js'; | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher.js'; | ||
export * from './removeEmptyFields.js'; | ||
export * from './removeFields.js'; | ||
export * from './sortFields.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,5 +0,5 @@ | ||
import { PayloadHasher } from './PayloadHasher'; | ||
import { PayloadHasher } from './PayloadHasher.js'; | ||
export declare class NodePayloadHasher extends PayloadHasher { | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/dist/types/master").WorkerImplementation | undefined; | ||
static createNodeWorker: (func?: () => unknown) => import("@xylabs/threads/observable").WorkerImplementation | undefined; | ||
} | ||
//# sourceMappingURL=NodePayloadHasher.d.ts.map |
@@ -5,2 +5,6 @@ import { Hash } from '@xylabs/hex'; | ||
import { WasmSupport } from '@xyo-network/wasm'; | ||
export type WorkerFunction = ((...args: any[]) => any) | (() => any); | ||
export type WorkerModule<Keys extends string> = { | ||
[key in Keys]: WorkerFunction; | ||
}; | ||
export declare class PayloadHasher<T extends EmptyObject = EmptyObject> extends ObjectWrapper<T> { | ||
@@ -24,3 +28,3 @@ static allowHashPooling: boolean; | ||
private static get wasmHashPool(); | ||
static createWorker(url?: URL, func?: () => unknown): import("@xylabs/threads/dist/types/master").Worker; | ||
static createWorker(url?: URL, func?: () => unknown): import("@xylabs/threads/observable").Worker; | ||
static filterExcludeByHash<T extends EmptyObject>(objs: T[] | undefined, hash: Hash[] | Hash): Promise<T[]>; | ||
@@ -27,0 +31,0 @@ static filterIncludeByHash<T extends EmptyObject>(objs: T[] | undefined, hash: Hash[] | Hash): Promise<T[]>; |
@@ -1,4 +0,4 @@ | ||
export * from './jsHashNode'; | ||
export * from './subtleHashNode'; | ||
export * from './wasmHashNode'; | ||
export * from './jsHashNode.js'; | ||
export * from './subtleHashNode.js'; | ||
export * from './wasmHashNode.js'; | ||
//# sourceMappingURL=index.d.ts.map |
// src/worker/jsHash.ts | ||
import { asHash } from "@xylabs/hex"; | ||
import { expose } from "@xylabs/threads/worker"; | ||
import { expose } from "@xylabs/threads"; | ||
import shajs from "sha.js"; | ||
@@ -5,0 +5,0 @@ expose({ |
// src/worker/subtleHash.ts | ||
import { subtle } from "@xylabs/platform"; | ||
import { expose } from "@xylabs/threads/worker"; | ||
import { expose } from "@xylabs/threads"; | ||
expose({ | ||
@@ -5,0 +5,0 @@ async hash(data) { |
// src/worker/wasmHash.ts | ||
import { asHash } from "@xylabs/hex"; | ||
import { expose } from "@xylabs/threads/worker"; | ||
import { expose } from "@xylabs/threads"; | ||
import { sha256 } from "hash-wasm"; | ||
@@ -5,0 +5,0 @@ expose({ |
@@ -13,10 +13,10 @@ { | ||
"dependencies": { | ||
"@xylabs/assert": "^3.5.3", | ||
"@xylabs/hex": "^3.5.3", | ||
"@xylabs/lodash": "^3.5.3", | ||
"@xylabs/object": "^3.5.3", | ||
"@xylabs/platform": "^3.5.3", | ||
"@xylabs/threads": "^3.5.3", | ||
"@xylabs/typeof": "^3.5.3", | ||
"@xyo-network/wasm": "^2.109.1", | ||
"@xylabs/assert": "^3.5.9", | ||
"@xylabs/hex": "^3.5.9", | ||
"@xylabs/lodash": "^3.5.9", | ||
"@xylabs/object": "^3.5.9", | ||
"@xylabs/platform": "^3.5.9", | ||
"@xylabs/threads": "^3.5.9", | ||
"@xylabs/typeof": "^3.5.9", | ||
"@xyo-network/wasm": "^2.110.0", | ||
"hash-wasm": "^4.11.0", | ||
@@ -28,3 +28,3 @@ "sha.js": "^2.4.11" | ||
"@types/sha.js": "^2.4.4", | ||
"@xylabs/delay": "^3.5.3", | ||
"@xylabs/delay": "^3.5.9", | ||
"@xylabs/ts-scripts-yarn3": "^3.11.12", | ||
@@ -80,4 +80,4 @@ "@xylabs/tsconfig": "^3.11.12", | ||
"sideEffects": false, | ||
"version": "2.109.1", | ||
"version": "2.110.0", | ||
"type": "module" | ||
} |
@@ -1,4 +0,4 @@ | ||
import { createBrowserWorker } from './createBrowserWorker' | ||
import { createNodeWorker } from './createNodeWorker' | ||
import { PayloadHasher } from './PayloadHasher' | ||
import { createBrowserWorker } from './createBrowserWorker.js' | ||
import { createNodeWorker } from './createNodeWorker.js' | ||
import { PayloadHasher } from './PayloadHasher.js' | ||
@@ -5,0 +5,0 @@ // We put both in here so that things will work in jsdom/jest |
@@ -1,4 +0,4 @@ | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher' | ||
export * from './removeEmptyFields' | ||
export * from './removeFields' | ||
export * from './sortFields' | ||
export { BrowserPayloadHasher as PayloadHasher } from './BrowserPayloadHasher.js' | ||
export * from './removeEmptyFields.js' | ||
export * from './removeFields.js' | ||
export * from './sortFields.js' |
@@ -1,5 +0,5 @@ | ||
export * from './hasEmptyFields' | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher' | ||
export * from './removeEmptyFields' | ||
export * from './removeFields' | ||
export * from './sortFields' | ||
export * from './hasEmptyFields.js' | ||
export { NodePayloadHasher as PayloadHasher } from './NodePayloadHasher.js' | ||
export * from './removeEmptyFields.js' | ||
export * from './removeFields.js' | ||
export * from './sortFields.js' |
@@ -1,3 +0,3 @@ | ||
import { createNodeWorker } from './createNodeWorker' | ||
import { PayloadHasher } from './PayloadHasher' | ||
import { createNodeWorker } from './createNodeWorker.js' | ||
import { PayloadHasher } from './PayloadHasher.js' | ||
@@ -4,0 +4,0 @@ PayloadHasher.createNodeWorker = createNodeWorker |
@@ -7,4 +7,2 @@ import { assertEx } from '@xylabs/assert' | ||
import { ModuleThread, Pool, spawn, Worker } from '@xylabs/threads' | ||
// eslint-disable-next-line import/no-unresolved, import/no-internal-modules | ||
import { WorkerModule } from '@xylabs/threads/dist/types/worker' | ||
import { WasmSupport } from '@xyo-network/wasm' | ||
@@ -14,6 +12,12 @@ import { sha256 } from 'hash-wasm' | ||
import { removeEmptyFields } from './removeEmptyFields' | ||
import { sortFields } from './sortFields' | ||
import { jsHashFunc, subtleHashFunc, wasmHashFunc } from './worker' | ||
import { removeEmptyFields } from './removeEmptyFields.js' | ||
import { sortFields } from './sortFields.js' | ||
import { jsHashFunc, subtleHashFunc, wasmHashFunc } from './worker/index.js' | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
export type WorkerFunction = ((...args: any[]) => any) | (() => any) | ||
export type WorkerModule<Keys extends string> = { | ||
[key in Keys]: WorkerFunction | ||
} | ||
const wasmSupportStatic = new WasmSupport(['bigInt']) | ||
@@ -20,0 +24,0 @@ |
@@ -1,3 +0,3 @@ | ||
export * from './jsHashNode' | ||
export * from './subtleHashNode' | ||
export * from './wasmHashNode' | ||
export * from './jsHashNode.js' | ||
export * from './subtleHashNode.js' | ||
export * from './wasmHashNode.js' |
import { asHash } from '@xylabs/hex' | ||
// eslint-disable-next-line import/no-internal-modules | ||
import { expose } from '@xylabs/threads/worker' | ||
import { expose } from '@xylabs/threads' | ||
import shajs from 'sha.js' | ||
@@ -5,0 +5,0 @@ |
import { subtle } from '@xylabs/platform' | ||
// eslint-disable-next-line import/no-internal-modules | ||
import { expose } from '@xylabs/threads/worker' | ||
import { expose } from '@xylabs/threads' | ||
@@ -5,0 +5,0 @@ expose({ |
import { asHash } from '@xylabs/hex' | ||
// eslint-disable-next-line import/no-internal-modules | ||
import { expose } from '@xylabs/threads/worker' | ||
import { expose } from '@xylabs/threads' | ||
import { sha256 } from 'hash-wasm' | ||
@@ -5,0 +5,0 @@ |
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
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
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 too big to display
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 too big to display
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 too big to display
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
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
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
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
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
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
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
909296
15453
Updated@xylabs/assert@^3.5.9
Updated@xylabs/hex@^3.5.9
Updated@xylabs/lodash@^3.5.9
Updated@xylabs/object@^3.5.9
Updated@xylabs/platform@^3.5.9
Updated@xylabs/threads@^3.5.9
Updated@xylabs/typeof@^3.5.9
Updated@xyo-network/wasm@^2.110.0