New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rdfjs/fetch-lite

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rdfjs/fetch-lite - npm Package Compare versions

Comparing version

to
2.1.0

test/Headers.test.js

2

index.js

@@ -21,2 +21,4 @@ const nodeifyFetch = require('nodeify-fetch')

rdfFetch.Headers = nodeifyFetch.Headers
module.exports = rdfFetch

2

lib/jsonldContextLinkUrl.js

@@ -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