microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a6b7827fcd2db3bf604d42e235216c8d5b244f13

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/bundler/src/utils.ts

6lines · modecode

1import { normalizePath } from "@typespec/compiler";
2import { relative } from "path";
3
4export function relativeTo(from: string, to: string) {
5 return normalizePath(relative(from, to));
6}
7