myfx
v1.15.4
Published
A modular utility library with more utils, higher performance and simpler declarations ...
Downloads
278
Maintainers
Readme
My=f(x)
//object
_.each<string, string>({ 1: 'a', 2: 'b', 3: 'c' }, (v,k)=>{})
//dom list
_.each<HTMLElement>(document.body.children, (el)=>{})
//array
_.each([1, 2, 3], num=>{})
//set
_.each(new Set([1, 2, 3]), num=>{
if(...)
return false// you can break the loop at any time
})English | 中文
Myfx
Myfx is a modular utility library with more utils, higher performance and simpler declarations
Features
- Unified interface for collections and other modules
- 200+ Pure functions
- Lazy evaluation
- Tree APIs
- Full dateTime/number formatter
- and more...
Quick start
- install
npm i myfx- import
import _ from 'myfx'
//or
import {each} from 'myfx'
//or
import {each,map} from 'myfx/collection'
//or
import _ from 'https://cdn.skypack.dev/myfx'Development
- use
testto do jest - use
buildto rollup myfx - use
docto gen tsdoc
