1.0.8 • Published 4 years ago
@i-components/i-util v1.0.8
i-util
A pure es module util for i-componentsThe 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()