@i-components/i-util
v1.0.8
Published
The core util lib for i-components
Downloads
5
Readme
i-util
A pure es module util for i-components
The v1.0.0 is an initial version, some useful basic functions will be added later
Install
npm i i-util
Usage
import _i from 'i-util';
async main()=>{
await _i.sleep(1000);//delay 1000ms
const obj={
name:'tom'
}
await _i.deepCopy(obj);
}
main()