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

@expressen/tallahassee

Package Overview
Dependencies
Maintainers
12
Versions
207
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expressen/tallahassee - npm Package Compare versions

Comparing version 14.10.0 to 14.10.1

7

lib/FormData.js

@@ -20,5 +20,8 @@ import { FormData as NodeFetchFormData } from "node-fetch";

continue;
case "file":
this.append(elm.name, elm.files[0], elm.files[0].name);
case "file": {
for (const file of elm.files) {
this.append(elm.name, file, file?.name || "blob");
}
continue;
}
case "select-multiple": {

@@ -25,0 +28,0 @@ for (const option of elm.selectedOptions) {

{
"name": "@expressen/tallahassee",
"version": "14.10.0",
"version": "14.10.1",
"description": "Lightweight client testing framework",

@@ -5,0 +5,0 @@ "type": "module",

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