Socket
Socket
Sign inDemoInstall

@domql/utils

Package Overview
Dependencies
Maintainers
3
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domql/utils - npm Package Compare versions

Comparing version 2.3.151 to 2.3.152

4

dist/cjs/object.js

@@ -67,2 +67,4 @@ "use strict";

for (const e in obj) {
if (e === "__proto__")
continue;
if (excludeFrom.includes(e) || e.startsWith("__"))

@@ -130,2 +132,4 @@ continue;

for (const prop in obj) {
if (prop === "__proto__")
continue;
if (excludeFrom.includes(prop) || prop.startsWith("__"))

@@ -132,0 +136,0 @@ continue;

@@ -27,2 +27,3 @@ 'use strict'

for (const e in obj) {
if (e === '__proto__') continue
if (excludeFrom.includes(e) || e.startsWith('__')) continue

@@ -99,2 +100,3 @@ const elementProp = element[e]

for (const prop in obj) {
if (prop === '__proto__') continue
if (excludeFrom.includes(prop) || prop.startsWith('__')) continue

@@ -101,0 +103,0 @@ let objProp = obj[prop]

4

package.json
{
"name": "@domql/utils",
"version": "2.3.151",
"version": "2.3.152",
"license": "MIT",

@@ -26,3 +26,3 @@ "type": "module",

},
"gitHead": "2b240bcbceb25fc4ffda75c25232c66a8e183614",
"gitHead": "9424c9efe8b2b9e4b39bf7dfac3caf1f964ddb9a",
"devDependencies": {

@@ -29,0 +29,0 @@ "@babel/core": "^7.12.0"

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