Socket
Socket
Sign inDemoInstall

flat

Package Overview
Dependencies
1
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.1 to 2.0.2

1

index.js

@@ -75,2 +75,3 @@ var isBuffer = require('is-buffer')

while (key2 !== undefined) {
if (key1 === '__proto__') { return }
var type = Object.prototype.toString.call(recipient[key1])

@@ -77,0 +78,0 @@ var isobject = (

2

package.json
{
"name": "flat",
"version": "2.0.1",
"version": "2.0.2",
"main": "index.js",

@@ -5,0 +5,0 @@ "scripts": {

@@ -420,2 +420,16 @@ var assert = require('assert')

})
test('should not pollute prototype', function () {
unflatten({
'__proto__.polluted': true
});
unflatten({
'prefix.__proto__.polluted': true
});
unflatten({
'prefix.0.__proto__.polluted': true
});
assert.notStrictEqual({}.polluted, true);
})
})

@@ -422,0 +436,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc