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

fets

Package Overview
Dependencies
Maintainers
1
Versions
707
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fets - npm Package Compare versions

Comparing version 0.7.1-alpha-20240102113840-f47772baf46765f2a1e897e8f803bb5b320223a7 to 0.7.1-alpha-20240102114418-e85d9ec6a07ba72032adda7ca0334186f6973b96

10

cjs/createRouter.js

@@ -15,6 +15,8 @@ "use strict";

function createRouterBase({ fetchAPI: givenFetchAPI, base: basePath = '/', plugins = [], openAPI, swaggerUI, landingPage = true, } = {}, openAPIDocument) {
const fetchAPI = {
...DefaultFetchAPI,
...givenFetchAPI,
};
const fetchAPI = givenFetchAPI
? {
...DefaultFetchAPI,
...givenFetchAPI,
}
: DefaultFetchAPI;
const __onRouterInitHooks = [];

@@ -21,0 +23,0 @@ const onRouteHooks = [];

@@ -11,6 +11,8 @@ import { parse as qsParse } from 'qs';

export function createRouterBase({ fetchAPI: givenFetchAPI, base: basePath = '/', plugins = [], openAPI, swaggerUI, landingPage = true, } = {}, openAPIDocument) {
const fetchAPI = {
...DefaultFetchAPI,
...givenFetchAPI,
};
const fetchAPI = givenFetchAPI
? {
...DefaultFetchAPI,
...givenFetchAPI,
}
: DefaultFetchAPI;
const __onRouterInitHooks = [];

@@ -17,0 +19,0 @@ const onRouteHooks = [];

2

package.json
{
"name": "fets",
"version": "0.7.1-alpha-20240102113840-f47772baf46765f2a1e897e8f803bb5b320223a7",
"version": "0.7.1-alpha-20240102114418-e85d9ec6a07ba72032adda7ca0334186f6973b96",
"description": "TypeScript HTTP Framework focusing on e2e type-safety, easy setup, performance & great developer experience",

@@ -5,0 +5,0 @@ "sideEffects": false,

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