Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/winkgroup/misc
Utility library used in WiNK for miscellaneous tasks
https://github.com/winkgroup/misc
Last synced: 2 days ago
JSON representation
Utility library used in WiNK for miscellaneous tasks
- Host: GitHub
- URL: https://github.com/winkgroup/misc
- Owner: WINKgroup
- License: mit
- Created: 2022-07-12T07:14:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-08T07:29:25.000Z (9 months ago)
- Last Synced: 2025-01-01T21:47:35.143Z (25 days ago)
- Language: TypeScript
- Size: 53.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# misc
Utility library used in WiNK for miscellaneous tasks## functions
- **timeFromNow**: english text like "30 minutes ago", etc...
- **shrinkUrl**: http://veryloooooooooongurl => http://sh...rturl
- **byteString**: 123456789 => 123.5Mb
- **padZeros**: padZeros(50, 3) => "050"
- **collapse**: looooooong text => lo...xt
- **pickRandom**: ["1", "4", "8"] => "4" (random)
- **camelToTitle**: dontTryThisAtHome => Dont Try This At Home## extra functions available only on NodeJS (server side)
- **readline(question:string)**: to provide a question on the cli
- **getKeypress() => Promise**: to read a key pressing in the cli