Socket
Socket
Sign inDemoInstall

@tinypudding/puddy-lib

Package Overview
Dependencies
7
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.11 to 1.0.12

15

http/domainValidator.js

@@ -10,5 +10,16 @@ module.exports = function (req, cfg) {

// Path
req.urlPath = req.url.split('/');
req.urlPath.shift();
var prepareUrlPath = req.url.split('/');
req.urlPath = [];
for (const item in prepareUrlPath) {
if(item !== 0) {
// Insert URL Path
req.urlPath.push(prepareUrlPath[item].split(/[?#]/)[0]);
}
}
// Delete Prepare
delete prepareUrlPath;
// Is Obj

@@ -15,0 +26,0 @@ const objType = require('../get/objType');

2

package.json
{
"name": "@tinypudding/puddy-lib",
"version": "1.0.11",
"version": "1.0.12",
"description": "Essential codes to run the other repositories from the Tiny Pudding Account.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc