Socket
Socket
Sign inDemoInstall

url-search-params-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

url-search-params-polyfill - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

test/index.test.js

3

index.js

@@ -29,3 +29,4 @@ /**

if (search.hasOwnProperty(i)) {
this.append(i, JSON.stringify(search [i]));
var str = typeof search [i] === 'string' ? search [i] : JSON.stringify(search [i]);
this.append(i, str);
}

@@ -32,0 +33,0 @@ }

{
"name": "url-search-params-polyfill",
"version": "1.0.1",
"version": "1.0.2",
"description": "a simple polyfill for javascript URLSearchParams",

@@ -12,7 +12,16 @@ "homepage": "https://github.com/jerrybendy/url-search-params-polyfill",

"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "mocha test/*.test.js",
"istanbul": "istanbul cover _mocha -- test/*.test.js"
},
"keywords": ["polyfill", "URLSearchParams"],
"keywords": [
"polyfill",
"URLSearchParams"
],
"author": "Jerry Bendy <jerry@icewingcc.com>",
"license": "MIT"
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc