Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postman-collection

Package Overview
Dependencies
Maintainers
5
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 3.6.1 to 3.6.2

10

lib/collection/variable.js

@@ -112,4 +112,10 @@ var _ = require('../util').lodash,

// returns empty string if the value is
// null or undefined or does not implement a toString
// returns String representation of null as it's a valid JSON type
// refer: https://github.com/postmanlabs/postman-app-support/issues/8493
if (value === null) {
return NULL;
}
// returns empty string if the value is undefined or does not implement
// the toString method
return (!_.isNil(value) && _.isFunction(value.toString)) ? value.toString() : E;

@@ -116,0 +122,0 @@ },

14

package.json

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

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

@@ -43,3 +43,3 @@ "postman"

"lodash": "4.17.15",
"marked": "1.0.0",
"marked": "1.1.0",
"mime-format": "2.0.0",

@@ -50,3 +50,3 @@ "mime-types": "2.1.27",

"semver": "7.3.2",
"uuid": "8.0.0"
"uuid": "3.4.0"
},

@@ -66,5 +66,5 @@ "devDependencies": {

"eslint-plugin-security": "1.4.0",
"js-yaml": "3.13.1",
"js-yaml": "3.14.0",
"jsdoc": "3.6.4",
"jsdoc-to-markdown": "5.0.3",
"jsdoc-to-markdown": "6.0.1",
"karma": "3.1.4",

@@ -75,3 +75,3 @@ "karma-browserify": "6.1.0",

"karma-mocha-reporter": "2.2.5",
"mocha": "7.1.2",
"mocha": "7.2.0",
"mustache": "4.0.1",

@@ -81,3 +81,3 @@ "nyc": "14.1.1",

"postman-jsdoc-theme": "0.0.3",
"postman-request": "2.88.1-postman.22",
"postman-request": "2.88.1-postman.23",
"puppeteer": "1.20.0",

@@ -84,0 +84,0 @@ "recursive-readdir": "2.2.2",

Sorry, the diff of this file is not supported yet

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