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

f-box-core

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

f-box-core - npm Package Compare versions

Comparing version 0.1.13 to 0.1.14

8

dist/types/Either.d.ts

@@ -69,3 +69,3 @@ type None = null | undefined | void;

*/
readonly orElse: <U>(defaultValue: Either<L, U>) => Either<L, U>;
readonly orElse: (defaultValue: Either<L, R>) => Either<L, R>;
/**

@@ -78,3 +78,3 @@ * Returns the provided default value since this represents an invalid result.

*/
readonly "<?>": <U>(defaultValue: Either<L, U>) => Either<L, U>;
readonly "<?>": (defaultValue: Either<L, R>) => Either<L, R>;
/**

@@ -85,3 +85,3 @@ * Returns the provided default value since this represents an invalid result.

*/
readonly getOrElse: <U>(defaultValue: U) => U;
readonly getOrElse: (defaultValue: R) => R;
/**

@@ -94,3 +94,3 @@ * Returns the provided default value since this represents an invalid result.

*/
readonly "<|>": <U>(defaultValue: U) => U;
readonly "<|>": (defaultValue: R) => R;
/**

@@ -97,0 +97,0 @@ * Matches the `Left` case and applies the corresponding function.

{
"name": "f-box-core",
"version": "0.1.13",
"version": "0.1.14",
"description": "Put your data in a box, and suddenly it's easier to handle, transform, and use however you need.",

@@ -5,0 +5,0 @@ "type": "module",

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