UNPKG

jget-shark

Version:

Use GET functions

10 lines 281 B
var request = require("request"); function sget(helpurl, thens) { var bo; var options = { method: 'GET', url: helpurl, headers: { 'cache-control': 'no-cache' } }; request(options, thens); } module.exports = { sget: sget }; //# sourceMappingURL=index.js.map