iwax
v1.0.6
Published
This project provides a simple package to realize the core logic of the icanWallet
Downloads
3
Readme
iwax
//install
npm iwax -s
//use case
iwax({
url: "url",
method: "get",
success : (res) => {
console.log(res)
}
});
//or
const [err,res] = await iwax({url})
console.log(res)