You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@arancini/core

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arancini/core - npm Package Compare versions

Comparing version

to
4.0.2

6

dist/query.d.ts

@@ -6,2 +6,7 @@ import { BitSet } from './bit-set';

export type Without<E, P extends keyof E> = Pick<E, Exclude<keyof E, P>> & Partial<Pick<E, P>>;
export type Strict<E> = WithoutOptionalProperties<E>;
type OptionalProperties<T> = {
[P in keyof T]-?: undefined extends T[P] ? P : never;
};
type WithoutOptionalProperties<T> = Pick<T, Exclude<keyof T, OptionalProperties<T>[keyof T]>>;
export type QueryConditionType = 'all' | 'any' | 'not';

@@ -55,1 +60,2 @@ export type QueryCondition<E> = {

}
export {};

2

package.json

@@ -12,3 +12,3 @@ {

"license": "MIT",
"version": "4.0.1",
"version": "4.0.2",
"homepage": "https://github.com/isaac-mason/arancini",

@@ -15,0 +15,0 @@ "bugs": {