Socket
Socket
Sign inDemoInstall

mappersmith

Package Overview
Dependencies
Maintainers
1
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mappersmith - npm Package Compare versions

Comparing version 2.26.0 to 2.26.1

4

mappersmith.js

@@ -16,3 +16,3 @@ "use strict";

/* global VERSION */
var version = "2.26.0";
var version = "2.26.1";
exports.version = version;

@@ -76,3 +76,3 @@ var configs = {

/**
* For aditional configurations to the http/https module
* For additional configurations to the http/https module
* For http: https://nodejs.org/api/http.html#http_http_request_options_callback

@@ -79,0 +79,0 @@ * For https: https://nodejs.org/api/https.html#https_https_request_options_callback

{
"name": "mappersmith",
"version": "2.26.0",
"version": "2.26.1",
"description": "It is a lightweight rest client for node.js and the browser",

@@ -60,3 +60,3 @@ "author": "Tulio Ornelas <ornelas.tulio@gmail.com>",

"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-minify-replace": "^0.4.3",

@@ -89,6 +89,8 @@ "body-parser": "^1.15.2",

"puppeteer": "^0.12.0",
"webpack": "^3.5.1",
"webpack-dev-server": "^2.7.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.11",
"whatwg-fetch": "^2.0.2"
}
}

@@ -261,3 +261,3 @@ [![npm version](https://badge.fury.io/js/mappersmith.svg)](http://badge.fury.io/js/mappersmith)

__NOTE__: A default basic auth can be configured with the use of the [BasicAuthMiddleware](#basic-auth-middleware), check the middleware section below for more information.
__NOTE__: A default basic auth can be configured with the use of the [BasicAuthMiddleware](#middleware-basic-auth), check the middleware section below for more information.
__NOTE__: The `authAttr` param can be set at manifest level.

@@ -264,0 +264,0 @@

@@ -108,3 +108,4 @@ "use strict";

if (queryString.length !== 0) {
path += "?".concat(queryString);
var hasQuery = path.includes('?');
path += "".concat(hasQuery ? '&' : '?').concat(queryString);
}

@@ -111,0 +112,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc