microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1b74b19bc12c226dcd0f3fcd4eab6d66babbc2a8

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 "@cadl-lang/compiler";
2import { relative } from "path";
3
4export function relativeTo(from: string, to: string) {
5 return normalizePath(relative(from, to));
6}
7