typescript-optional
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "typescript-optional", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Optional (like Java) implementation in TypeScript", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -12,6 +12,6 @@ # TypeScript Optional | ||
`Optional<T>` is a type which *may* contain a *payload* of type `T` or *may not* contain. | ||
It provides the common interface regardless of an instance is *present* or is *empty*. | ||
`Optional<T>` is a type which *may* or *may not* contain a *payload* of type `T`. | ||
It provides a common interface regardless of whether an instance is *present* or is *empty*. | ||
This module reffers to [Optional class in Java 8](https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html). | ||
This module is inspired by [Optional class in Java 8](https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html). | ||
@@ -18,0 +18,0 @@ ### Install |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12352