An open API service indexing awesome lists of open source software.

https://github.com/guimauvedigital/better-nullable

Better nullable handling is TypeScript
https://github.com/guimauvedigital/better-nullable

null typescript

Last synced: 11 months ago
JSON representation

Better nullable handling is TypeScript

Awesome Lists containing this project

README

          

# better-nullable

Just a simple library to make working with nullable values a bit easier.

```ts
interface Item {
value: Nullable; // Can be null or undefined
}
```