src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const axios = require('axios');

module.exports = (options) => {
  const client = axios.create(options);
  return new Proxy(
    {},
    {
      get: (_, property) => client[property.toLowerCase()]
    }
  );
};