axios-master
v1.1.4
Published
axios response time status log
Downloads
555
Maintainers
Readme
Axios Master
Example
import axiosMaster from "axios-master";
async function name() {
try {
const result = await axiosMaster("SMS", false, {
method: "GET",
url: encodeURI(`https://api2.togtokh.dev/main/user/`),
headers: {
"Content-Type": "application/json",
},
});
console.log(result);
} catch (error) {
console.log(error);
}
}
name();