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 4.1.0 to 4.1.1

3

index.js

@@ -80,2 +80,5 @@ var isBuffer = require('is-buffer')

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

@@ -82,0 +85,0 @@ var isobject = (

2

package.json
{
"name": "flat",
"version": "4.1.0",
"version": "4.1.1",
"main": "index.js",

@@ -5,0 +5,0 @@ "bin": "cli.js",

@@ -473,2 +473,16 @@ /* globals suite test */

}
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);
})
})

@@ -475,0 +489,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