| name | fp-option-ref |
| description | Quick reference for Option type. Use when user needs to handle nullable values, optional data, or wants to avoid null checks. |
| category | AI & Agents |
| source | antigravity |
| tags | ["typescript","ai"] |
| url | https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/fp-option-ref |
Option Quick Reference
Option = value that might not exist. Some(value) or None.
When to Use
- You need a quick fp-ts reference for nullable or optional values.
- The task involves eliminating null checks, safe property access, or optional chaining with
Option.
- You want a short reference card rather than a full migration guide.
Create
import * as O from
O.()
O.
O.(x)
O.(x > )(x)