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

@typespec/http

Package Overview
Dependencies
Maintainers
0
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typespec/http - npm Package Compare versions

Comparing version

to
0.58.0-dev.6

24

dist/src/route.js

@@ -7,3 +7,3 @@ import { createDiagnosticCollector, validateDecoratorTarget, } from "@typespec/compiler";

const AllowedSegmentSeparators = ["/", ":"];
function normalizeFragment(fragment) {
function normalizeFragment(fragment, trimLast = false) {
if (fragment.length > 0 && AllowedSegmentSeparators.indexOf(fragment[0]) < 0) {

@@ -13,15 +13,19 @@ // Insert the default separator

}
// Trim any trailing slash
return fragment.replace(/\/$/g, "");
if (trimLast && fragment[fragment.length - 1] === "/") {
return fragment.slice(0, -1);
}
return fragment;
}
function joinPathSegments(rest) {
let current = "";
for (const [index, segment] of rest.entries()) {
current += normalizeFragment(segment, index < rest.length - 1);
}
return current;
}
function buildPath(pathFragments) {
// Join all fragments with leading and trailing slashes trimmed
const path = pathFragments.length === 0
? "/"
: pathFragments
.map(normalizeFragment)
.filter((x) => x !== "")
.join("");
const path = pathFragments.length === 0 ? "/" : joinPathSegments(pathFragments);
// The final path must start with a '/'
return path.length > 0 && path[0] === "/" ? path : `/${path}`;
return path[0] === "/" ? path : `/${path}`;
}

@@ -28,0 +32,0 @@ export function resolvePathAndParameters(program, operation, overloadBase, options) {

{
"name": "@typespec/http",
"version": "0.58.0-dev.5",
"version": "0.58.0-dev.6",
"author": "Microsoft Corporation",

@@ -5,0 +5,0 @@ "description": "TypeSpec HTTP protocol binding",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet