/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/testdata/subdir/mod1.ts
17 строк
308 B
Matt Mastracci
chore: move cli/tests/ -> tests/ (#22369)
10 фев 2024, 23:22
Не верифицирован
10 фев 2024, 23:22
f5e46c9
Код
Авторство
О чём код?
import { printHello2, returnsFoo } from "./subdir2/mod2.ts"; export function returnsHi(): string { return "Hi"; } export function returnsFoo2(): string { return returnsFoo(); } export function printHello3() { printHello2(); } export function throwsError() { throw Error("exception from mod1"); }