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

xe-utils

Package Overview
Dependencies
Maintainers
1
Versions
305
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xe-utils - npm Package Compare versions

Comparing version 1.0.61 to 1.0.62

2

package.json
{
"name": "xe-utils",
"version": "1.0.61",
"version": "1.0.62",
"description": "xe-utils 提供一整套实用函数式编程功能",

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

@@ -44,3 +44,3 @@ import { isArray, isObject, assign } from '../core/base'

var items = val.split('=')
result[decodeURIComponent(items[0])] = decodeURIComponent(items[1])
result[decodeURIComponent(items[0])] = decodeURIComponent(items[1] || '')
})

@@ -47,0 +47,0 @@ return arguments.length === 1 ? result[name] : result

@@ -12,4 +12,4 @@ const $locat = location

params.split('&').forEach(function (param) {
var [key, val] = param.split('=')
result[decodeURIComponent(key)] = val ? decodeURIComponent(val) : val
var items = param.split('=')
result[decodeURIComponent(items[0])] = decodeURIComponent(items[1] || '')
})

@@ -16,0 +16,0 @@ }

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