Socket
Socket
Sign inDemoInstall

@expressen/tallahassee

Package Overview
Dependencies
Maintainers
10
Versions
206
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 11.11.0 to 11.12.0

CHANGELOG.md

9

index.js

@@ -177,3 +177,10 @@ "use strict";

function Tallahassee(origin, options = {}) {
function Tallahassee(...args) {
let origin, options;
if (typeof args[0] === "object") {
options = args[0];
} else {
origin = args[0];
options = args[1] || {};
}
if (!(this instanceof Tallahassee)) return new Tallahassee(origin, options);

@@ -180,0 +187,0 @@ this[kOrigin] = origin;

2

package.json
{
"name": "@expressen/tallahassee",
"version": "11.11.0",
"version": "11.12.0",
"description": "Lightweight client testing framework",

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

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