@rdfjs/fetch-lite
Advanced tools
Comparing version
@@ -21,2 +21,4 @@ const nodeifyFetch = require('nodeify-fetch') | ||
rdfFetch.Headers = nodeifyFetch.Headers | ||
module.exports = rdfFetch |
@@ -36,5 +36,5 @@ const url = require('url') | ||
// resolve the URL | ||
return url.resolve(res.url, contextUrl) | ||
return url.resolve(res.url, contextUrl) // eslint-disable-line node/no-deprecated-api | ||
} | ||
module.exports = jsonldContextLinkUrl |
{ | ||
"name": "@rdfjs/fetch-lite", | ||
"version": "2.0.1", | ||
"version": "2.1.0", | ||
"description": "Wrapper for fetch to simplify sending and receiving RDF data", | ||
@@ -28,3 +28,3 @@ "main": "index.js", | ||
"isstream": "^0.1.2", | ||
"nodeify-fetch": "^2.0.0", | ||
"nodeify-fetch": "^2.2.1", | ||
"readable-stream": "^3.3.0" | ||
@@ -36,9 +36,7 @@ }, | ||
"@rdfjs/formats-common": "^2.0.0", | ||
"get-stream": "^5.1.0", | ||
"mocha": "^5.2.0", | ||
"nock": "^10.0.0", | ||
"standard": "^12.0.1" | ||
}, | ||
"engines": { | ||
"node": ">=7.6" | ||
"standard": "^14.3.3" | ||
} | ||
} |
@@ -1,5 +0,3 @@ | ||
/* global describe, it */ | ||
const assert = require('assert') | ||
const expectError = require('./support/expectError') | ||
const { rejects, strictEqual } = require('assert') | ||
const { describe, it } = require('mocha') | ||
const rdfFetch = require('..') | ||
@@ -9,10 +7,10 @@ | ||
it('should be a function', () => { | ||
assert.strictEqual(typeof rdfFetch, 'function') | ||
strictEqual(typeof rdfFetch, 'function') | ||
}) | ||
it('should throw an error if now formats are given', () => { | ||
return expectError(() => { | ||
return rdfFetch('') | ||
return rejects(async () => { | ||
await rdfFetch('') | ||
}) | ||
}) | ||
}) |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
27560
0.56%7
16.67%603
-2.11%5
25%Updated