Skip to content

Instantly share code, notes, and snippets.

@Yukkku
Yukkku / zenbuyomi.ts
Last active June 6, 2023 09:13
deno_std (0.185.0)全部読み
// これ全部deno_stdのファイルです。依存関係がどうとかで読み込むファイル減らせるだろうけど、面倒なのでやってません。
// ちなみにこのファイルはリポジトリをダウンロードした後に以下のコードを実行して作ってます。
/*************************************************************************************************************
import { walk } from 'https://deno.land/std@0.190.0/fs/mod.ts';
for await (const { path } of walk('../deno_std-0.190.0')) {
if (/.(js|ts)$/.test(path)) {
const url = path
.replaceAll('\\', '/')