yousef
v1.0.1
Published
A collection of useful tools developed by Yousef to help other programmers.
Downloads
2
Maintainers
Readme
A collection of useful tools developed to help other programmers.
Installation
install via npm
npm i yousef
install via bun
bun add yousef
How To Use?
import * as Util from 'yousef'
API
- flatten
const array = ['item1', ['item2', 'item3', ['item4']]]
Util.flatten(array); //= ['item1', 'item2', 'item3', 'item4']
Util.flatten(array, { depth: 1 }); //= ['item1', 'item2', 'item3', ['item4']]
- moment: Parse, validate, manipulate, and display dates and times in JavaScript.
- md5: MD5 password hash for pure javascript
- prettyBytes: Convert bytes to a human readable string: 1337 → 1.34 kB
- ms: Convert various time formats to milliseconds.
Feedback
- pretty-bytes
- moment
- ms