Skip to content

Instantly share code, notes, and snippets.

@yoav-lavi
Created April 20, 2019 20:28
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yoav-lavi/810d96541aa2bea530749faa197c7467 to your computer and use it in GitHub Desktop.
Save yoav-lavi/810d96541aa2bea530749faa197c7467 to your computer and use it in GitHub Desktop.
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: green; icon-glyph: file-code;
module.exports = async ({ url, headers = {} }) => {
const request = new Request(url);
request.method = methods.get;
request.headers = {
...headers
};
return await request.loadString();
};
const methods = {
get: "GET"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment