Skip to content

Instantly share code, notes, and snippets.

@suzusime
Last active April 10, 2024 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzusime/2e469d8bb2a1b19bfa6496de27e3a62b to your computer and use it in GitHub Desktop.
Save suzusime/2e469d8bb2a1b19bfa6496de27e3a62b to your computer and use it in GitHub Desktop.
Import All deno std@0.221.0
// #region import_std
import * as archive from "https://deno.land/std@0.221.0/archive/mod.ts";
import * as assert from "https://deno.land/std@0.221.0/assert/mod.ts";
import * as async from "https://deno.land/std@0.221.0/async/mod.ts";
import * as bytes from "https://deno.land/std@0.221.0/bytes/mod.ts";
import * as cli from "https://deno.land/std@0.221.0/cli/mod.ts";
import * as collections from "https://deno.land/std@0.221.0/collections/mod.ts";
import * as std_console from "https://deno.land/std@0.221.0/console/mod.ts";
import * as crypto from "https://deno.land/std@0.221.0/crypto/mod.ts";
import * as csv from "https://deno.land/std@0.221.0/csv/mod.ts";
import * as data_structures from "https://deno.land/std@0.221.0/data_structures/mod.ts";
import * as datetime from "https://deno.land/std@0.221.0/datetime/mod.ts";
import * as dotenv from "https://deno.land/std@0.221.0/dotenv/mod.ts";
import * as encoding_ascii85 from "https://deno.land/std@0.221.0/encoding/ascii85.ts";
import * as encoding_base32 from "https://deno.land/std@0.221.0/encoding/base32.ts";
import * as encoding_base58 from "https://deno.land/std@0.221.0/encoding/base58.ts";
import * as encoding_base64 from "https://deno.land/std@0.221.0/encoding/base64.ts";
import * as encoding_base64url from "https://deno.land/std@0.221.0/encoding/base64url.ts";
import * as encoding_hex from "https://deno.land/std@0.221.0/encoding/hex.ts";
import * as encoding_varint from "https://deno.land/std@0.221.0/encoding/varint.ts";
import * as expect from "https://deno.land/std@0.221.0/expect/mod.ts";
import * as flags from "https://deno.land/std@0.221.0/flags/mod.ts";
import * as fmt_bytes from "https://deno.land/std@0.221.0/fmt/bytes.ts";
import * as fmt_colors from "https://deno.land/std@0.221.0/fmt/colors.ts";
import * as fmt_duration from "https://deno.land/std@0.221.0/fmt/duration.ts";
import * as fmt_printf from "https://deno.land/std@0.221.0/fmt/printf.ts";
import * as front_matter from "https://deno.land/std@0.221.0/front_matter/mod.ts";
import * as fs from "https://deno.land/std@0.221.0/fs/mod.ts";
import * as html from "https://deno.land/std@0.221.0/html/mod.ts";
import * as http from "https://deno.land/std@0.221.0/http/mod.ts";
import * as ini from "https://deno.land/std@0.221.0/ini/mod.ts";
import * as io from "https://deno.land/std@0.221.0/io/mod.ts";
import * as json from "https://deno.land/std@0.221.0/json/mod.ts";
import * as jsonc from "https://deno.land/std@0.221.0/jsonc/mod.ts";
import * as log from "https://deno.land/std@0.221.0/log/mod.ts";
import * as media_types from "https://deno.land/std@0.221.0/media_types/mod.ts";
import * as msgpack from "https://deno.land/std@0.221.0/msgpack/mod.ts";
import * as net from "https://deno.land/std@0.221.0/net/mod.ts";
import * as path from "https://deno.land/std@0.221.0/path/mod.ts";
import * as permissions from "https://deno.land/std@0.221.0/permissions/mod.ts";
import * as regexp from "https://deno.land/std@0.221.0/regexp/mod.ts";
import * as semver from "https://deno.land/std@0.221.0/semver/mod.ts";
import * as streams from "https://deno.land/std@0.221.0/streams/mod.ts";
import * as testing_asserts from "https://deno.land/std@0.221.0/testing/asserts.ts";
import * as testing_bdd from "https://deno.land/std@0.221.0/testing/bdd.ts";
import * as testing_mock from "https://deno.land/std@0.221.0/testing/mock.ts";
import * as testing_snapshot from "https://deno.land/std@0.221.0/testing/snapshot.ts";
import * as testing_time from "https://deno.land/std@0.221.0/testing/time.ts";
import * as testing_types from "https://deno.land/std@0.221.0/testing/types.ts";
import * as text from "https://deno.land/std@0.221.0/text/mod.ts";
import * as toml from "https://deno.land/std@0.221.0/toml/mod.ts";
import * as ulid from "https://deno.land/std@0.221.0/ulid/mod.ts";
import * as url from "https://deno.land/std@0.221.0/url/mod.ts";
import * as uuid from "https://deno.land/std@0.221.0/uuid/mod.ts";
import * as webgpu from "https://deno.land/std@0.221.0/webgpu/mod.ts";
import * as yaml from "https://deno.land/std@0.221.0/yaml/mod.ts";
// #endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment