https://github.com/noahwillcrow/rbxts-basic-utilities
A Roblox-TS package of basic utilities I use all the time and just want to share easily between my projects - open source because maybe someone else doesn't want to reinvent the wheel, too
https://github.com/noahwillcrow/rbxts-basic-utilities
Last synced: about 1 year ago
JSON representation
A Roblox-TS package of basic utilities I use all the time and just want to share easily between my projects - open source because maybe someone else doesn't want to reinvent the wheel, too
- Host: GitHub
- URL: https://github.com/noahwillcrow/rbxts-basic-utilities
- Owner: noahwillcrow
- License: mit
- Created: 2020-05-30T02:38:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T05:09:14.000Z (almost 3 years ago)
- Last Synced: 2025-03-27T12:11:30.461Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 269 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @rbxts/basic-utilities
A Roblox-TS package of basic utilities I use all the time and just want to share easily between my projects - open source because maybe someone else doesn't want to reinvent the wheel, too.
# CONTRIBUTIONS WELCOME
Please. This is a very general package. If you've got something to share, just share it here :)
# Utilities List
- Lazy<T> \
A simple lazy loader for a value of type T
- StrictMap<K, V> \
A simple map wrapper that throws when trying to get a value that is not set. \
Useful for times when a missing value should throw an error anyway and you don't feel like writing those three lines of code yourself. \
Implements the accompanying ReadonlyStrictMap interface.