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

@arancini/core

Package Overview
Dependencies
Maintainers
1
Versions
44
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 4.0.1 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": {

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