A fetch polyfill for sketch
npm install sketch-module-fetch-polyfillA fetch polyfill for sketch inspired by unfetch.
``bash`
npm i -S sketch-module-fetch-polyfill
`js
import fetch from 'sketch-module-fetch-polyfill'
fetch("https://google.com")
.then(response => response.text())
.then(text => console.log(text))
.catch(e => console.error(e))
``