Upload main code

This commit is contained in:
2019-01-12 15:17:13 +01:00
committed by GitHub
parent 84507a8d6b
commit a03320593f
7 changed files with 247 additions and 2 deletions

6
test.js Normal file
View File

@@ -0,0 +1,6 @@
const w = require( './createRequest' );
;( async() => {
const r = await w( { url: 'https://aws.random.cat/meow' } ).send();
console.log( r.json() )
})();