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
- Host: GitHub
- URL: https://github.com/guimauvedigital/better-nullable
- Owner: guimauvedigital
- Created: 2025-03-14T14:50:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-14T15:01:55.000Z (about 1 year ago)
- Last Synced: 2025-03-14T15:47:36.515Z (about 1 year ago)
- Topics: null, typescript
- Language: TypeScript
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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
}
```