File size: 158 Bytes
5769f09
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import axios from "axios";

async function fetchScript(url) {
  const response = await axios.get(url);
  return response.data;
}

export default fetchScript;