Socket
Socket
Sign inDemoInstall

postman-collection

Package Overview
Dependencies
Maintainers
3
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postman-collection - npm Package Compare versions

Comparing version 0.0.16 to 0.0.17

16

lib/collection/item-group.js

@@ -178,2 +178,18 @@ var _ = require('../util').lodash,

}, this);
},
/**
* Calls the callback for each itemgroup belonging to itself. All ItemGroups encountered will also,
* call the callback on their own ItemGroups.
* @private
*
* @param {Function} callback
*/
forEachItemGroup: function forEachItemGroup (callback) {
this.items.each(function (item) {
if (ItemGroup.isItemGroup(item)) {
item.forEachItemGroup(callback);
callback(item, this);
}
}, this);
}

@@ -180,0 +196,0 @@ });

2

package.json

@@ -5,3 +5,3 @@ {

"author": "Postman Labs <help@getpostman.com>",
"version": "0.0.16",
"version": "0.0.17",
"keywords": [

@@ -8,0 +8,0 @@ "postman"

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