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

feat-skip-requests-package-runtime

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feat-skip-requests-package-runtime - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

24

lib/runner/extensions/event.command.js

@@ -101,2 +101,22 @@ var _ = require("lodash"),

/**
* Return the item path
*
* @param {any} item - sdk item
*/
function getItemPath(item) {
let path = "",
current = item;
while (current) {
if (current.name) {
path = current.name + (path !== "" ? "/" : "") + path;
}
current = current.__parent;
}
return path;
}
/**
* Fetch domain name from CookieStore event arguments.

@@ -554,4 +574,4 @@ *

_itemName: item.name,
_itemPath: item.getPath()
}
_itemPath: getItemPath(item),
},
},

@@ -558,0 +578,0 @@ function (err, result) {

4

package.json
{
"name": "feat-skip-requests-package-runtime",
"version": "0.0.10",
"version": "0.0.11",
"description": "Underlying library of executing Postman Collections",

@@ -58,3 +58,3 @@ "author": "Postman Inc.",

"postman-request": "2.88.1-postman.33",
"feat-skip-requests-package-sandbox": "^0.0.10",
"feat-skip-requests-package-sandbox": "^0.0.11",
"postman-url-encoder": "3.0.5",

@@ -61,0 +61,0 @@ "serialised-error": "1.1.3",

Sorry, the diff of this file is too big to display

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