New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fable-core

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fable-core - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

10

fable-core.d.ts

@@ -344,9 +344,13 @@ declare const FSymbol: any;

static add<T>(item: T, s: FSet<T>): FSet<T>;
static addInPlace<T>(item: T, s: Set<T>): boolean;
static remove<T>(item: T, s: FSet<T>): FSet<T>;
static union<T>(set1: FSet<T> | Iterable<T>, set2: FSet<T> | Iterable<T>): FSet<T> | Set<T>;
static union<T>(set1: FSet<T>, set2: FSet<T>): FSet<T>;
static op_Addition: typeof FSet.union;
static unionInPlace<T>(set1: Set<T>, set2: Iterable<T>): void;
static unionMany<T>(sets: Iterable<FSet<T>>): FSet<T>;
static difference<T>(set1: FSet<T> | Iterable<T>, set2: FSet<T> | Iterable<T>): FSet<T> | Set<T>;
static difference<T>(set1: FSet<T>, set2: FSet<T>): FSet<T>;
static op_Subtraction: typeof FSet.difference;
static intersect<T>(set1: FSet<T> | Set<T>, set2: FSet<T> | Iterable<T>): FSet<T> | Set<T>;
static differenceInPlace<T>(set1: Set<T>, set2: Iterable<T>): void;
static intersect<T>(set1: FSet<T>, set2: FSet<T>): FSet<T>;
static intersectInPlace<T>(set1: Set<T>, set2: Iterable<T>): void;
static intersectMany<T>(sets: Iterable<FSet<T>>): FSet<T>;

@@ -353,0 +357,0 @@ static isProperSubsetOf<T>(set1: FSet<T> | Set<T>, set2: FSet<T> | Set<T>): boolean;

{
"name": "fable-core",
"version": "0.5.2",
"version": "0.5.3",
"description": "Fable core lib & bindings for native JS objects, browser and node APIs",

@@ -5,0 +5,0 @@ "main": "fable-core.js",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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

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