UNPKG

excute

Version:

Execute any code and get result on your machine.

16 lines (13 loc) 272 B
'use strict' const fetch = require('axios') module.exports = function (token) { const instance = fetch.create({ baseURL: 'https://run.glot.io/languages', headers: { common: { Authorization: `Token ${token}` } } }) return instance }