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

@uform/utils

Package Overview
Dependencies
Maintainers
2
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uform/utils - npm Package Compare versions

Comparing version 0.1.0-alpha.21 to 0.1.0-beta.12

2

lib/clone.js

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

return new Set(set);
}], 'FileList', 'File', 'URL', ['Promise', function (promise) {
}], 'FileList', 'File', 'URL', 'RegExp', ['Promise', function (promise) {
return new Promise(function (resolve, reject) {

@@ -20,0 +20,0 @@ return promise.then(resolve, reject);

@@ -44,2 +44,5 @@ "use strict";

if (regexpA && regexpB) return a.toString() == b.toString();
var urlA = a instanceof URL;
var urlB = b instanceof URL;
if (urlA && urlB) return urlA.href == urlB.href;
var keys = keyList(a);

@@ -46,0 +49,0 @@ length = keys.length;

{
"name": "@uform/utils",
"version": "0.1.0-alpha.21",
"version": "0.1.0-beta.12",
"license": "MIT",

@@ -20,3 +20,3 @@ "main": "lib",

},
"gitHead": "0b7ba2a852d91cd0507d8243c980b6e5b4dc5d32",
"gitHead": "23c8eeac80be0cd67e74926d6f17179fb0a365fa",
"dependencies": {

@@ -23,0 +23,0 @@ "camel-case": "^3.0.0"

@@ -13,2 +13,3 @@ import { isFn } from './types'

'URL',
'RegExp',
[

@@ -15,0 +16,0 @@ 'Promise',

@@ -35,3 +35,5 @@ import { isFn, isArr } from './types'

if (regexpA && regexpB) return a.toString() == b.toString()
var urlA = a instanceof URL
var urlB = b instanceof URL
if (urlA && urlB) return urlA.href == urlB.href
var keys = keyList(a)

@@ -38,0 +40,0 @@ length = keys.length

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