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

option-t

Package Overview
Dependencies
Maintainers
1
Versions
333
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

option-t - npm Package Compare versions

Comparing version 0.16.2 to 0.16.3

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## 0.16.3
### Bug fix
- Fix the compile error of `option-t.d.ts`. ([PR106](https://github.com/saneyuki/option-t.js/pull/106))
- This catches up [pr105](https://github.com/saneyuki/option-t.js/pull/105)
## 0.16.2

@@ -7,0 +14,0 @@

12

option-t.d.ts

@@ -37,3 +37,3 @@ /**

*/
isSome: this is Some<T>;
isSome: boolean;

@@ -43,3 +43,3 @@ /**

*/
isNone: this is None<T>;
isNone: boolean;

@@ -194,4 +194,4 @@ /**

constructor(val: T);
isSome: this is Some<T>;
isNone: this is None<T>;
isSome: boolean;
isNone: boolean;
unwrap(): T;

@@ -215,4 +215,4 @@ unwrapOr(def: T): T;

constructor();
isSome: this is Some<T>;
isNone: this is None<T>;
isSome: boolean;
isNone: boolean;
unwrap(): T;

@@ -219,0 +219,0 @@ unwrapOr(def: T): T;

{
"name": "option-t",
"version": "0.16.2",
"version": "0.16.3",
"description": "Option type implementation whose APIs are inspired by Rust's `Option<T>`.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

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