file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc_bundler/tests/.cache/deno/8c74f411b9d10093fa640009fd812f68a5857673.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_map.js
export default function _map(fn, functor) {
var idx = 0;
var len = functor.length;
var result = Array(len);
while (idx < len) {
result[idx] = fn(functor[idx]);
idx += 1;
}
return result;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8cb26fca2ea3e82ade0ce6fed1820c64bebe5a31.ts | TypeScript | // Loaded from https://deno.land/x/lz4/mod.ts
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
import init, {
source,
lz4_compress,
lz4_decompress,
} from "./wasm.js";
await init(source);
/**
* Compress a byte array using lz4.
*
* ```typescript
* import { compress } from "h... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8d274f902028bd6ade6ccf03e3dbfe4a766b95bc.ts | TypeScript | // Loaded from https://deno.land/x/cliffy@v0.18.0/ansi/colors.ts
import * as stdColors from "https://deno.land/std@0.89.0/fmt/colors.ts";
type ExcludedColorMethods = "setColorEnabled" | "getColorEnabled";
type PropertyNames = keyof typeof stdColors;
type ColorMethod = (str: string, ...args: Array<unknown>) => string... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8d7040fd5022c14cc94cb7ebf289472df8454dd6.ts | TypeScript | // Loaded from https://deno.land/std@0.93.0/path/glob.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
import { osType } from "../_util/os.ts";
import { join, normalize } from "./mod.ts";
import { SEP, SEP_PATTERN } from "./separator.ts";
export int... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8d796d9f2c522b2c3efc59d3b1755eb7f2f12ca0.ts | TypeScript | // Loaded from https://deno.land/x/bytes_formater/deps.ts
export {
green,
setColorEnabled,
} from "https://deno.land/std@0.77.0/fmt/colors.ts";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8d9fb2ed380c62a979ede05f13c8d944d31e322f.ts | TypeScript | // Loaded from https://deno.land/std@0.85.0/fs/ensure_symlink.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import { exists, existsSync } from "./exists.ts";
import { getFileInfoType } f... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8dbd05883dea58125dac08eec329300c7b32871f.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/replace.js
import _curry3 from './internal/_curry3.js';
/**
* Replace a substring or regex match in a string with a replacement.
*
* The first two parameters correspond to the parameters of the
* `String.prototype.replace()` function, so the second paramet... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8dcdbd88740911debdaecb6b14e9bea1d344b3c5.ts | TypeScript | // Loaded from https://deno.land/x/abc@v1.2.4/util.ts
import { extname } from "./vendor/https/deno.land/std/path/mod.ts";
import { MIME } from "./constants.ts";
import { NotFoundException } from "./http_exception.ts";
/** Returns the content-type based on the extension of a path. */
export function contentType(filep... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8df0d7a78c7d560dbaba93c58d63bdc213a4aa79.ts | TypeScript | // Loaded from https://deno.land/std@0.85.0/fs/ensure_dir.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { getFileInfoType } from "./_util.ts";
/**
* Ensures that the directory exists.
* If the directory structure does not exist, it is created. Like mkdir -p.
* Requires the `... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8dfc590142b60eee0cc23a51bf3e3f7c7cd54454.ts | TypeScript | // Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isOctal.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
/**
* @ignore
*/
const octal = /^(0o)?[0-7]+$/i;
export const isOctal = (str: string) => {
assertString(str);
return octal.test(str);
};... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8e1dd502b1cc10e22235f34fdb8eb03d90ec1eee.ts | TypeScript | // Loaded from https://deno.land/x/case@v2.1.0/normalCase.ts
import lowerCase from "./lowerCase.ts";
import nonWordRegexp from "./vendor/nonWordRegexp.ts";
import camelCaseRegexp from "./vendor/camelCaseRegexp.ts";
import camelCaseUpperRegexp from "./vendor/camelCaseUpperRegexp.ts";
export default function normalCa... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8e532cb07a7e438a0071ee0ff0583941ead6b21d.ts | TypeScript | // Loaded from https://deno.land/std@0.92.0/_util/assert.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
export class DenoStdInternalError extends Error {
constructor(message: string) {
super(message);
this.name = "DenoStdInternalError";
}
}
/** Make an assertion, if not `t... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8e539eca57a6c7ac3c21eed0d85b8e55ae9bfa1a.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/invites/invite_metadata.ts
import { Invite } from "./invite.ts";
/** https://discord.com/developers/docs/resources/invite#invite-metadata-object */
export interface InviteMetadata extends Invite {
/** Number of times this invite has been used */
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8e6d32a1241fe3c0eac9710c89ffe38e03d8637c.ts | TypeScript | // Loaded from https://deno.land/x/djwt@v1.9/mod.ts
import { base64url, convertUint8ArrayToHex } from "./_depts.ts";
import {
create as createSignature,
verify as verifySignature,
} from "./_signature.ts";
import { verify as verifyAlgorithm } from "./_algorithm.ts";
import type { Algorithm, AlgorithmInput } from... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8e84fb8a7c5b83ee72d199d3112ff89b01713798.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_xfindLastIndex.js
import _curry2 from './_curry2.js';
import _xfBase from './_xfBase.js';
function XFindLastIndex(f, xf) {
this.xf = xf;
this.f = f;
this.idx = -1;
this.lastIdx = -1;
}
XFindLastIndex.prototype['@@transducer/init'] = _xfBase.i... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8eb550f1f2eb561ec557ba88538c0c5ebc656043.ts | TypeScript | // Loaded from https://deno.land/std@0.77.0/encoding/utf8.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/** A default TextEncoder instance */
export const encoder = new TextEncoder();
/** Shorthand for new TextEncoder().encode() */
export function encode(input?: string): Uint8Array {... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8ed3edcf8cc4d25e48cc1c92eb91dedfa06eb97b.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/nAry.js
import _curry2 from './internal/_curry2.js';
/**
* Wraps a function of any arity (including nullary) in a function that accepts
* exactly `n` parameters. Any extraneous parameters will not be passed to the
* supplied function.
*
* @func
* @member... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8f3f862ec31530edd43a4113d3105b62bb74260f.ts | TypeScript | // Loaded from https://deno.land/std@0.85.0/bytes/mod.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/** Find first index of binary pattern from source. If not found, then return -1
* @param source source array
* @param pat pattern to find in source array
* @param start the index to... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8f576d004620e529e9fe4b5f00eb14e7aa07218c.ts | TypeScript | // Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/jsutils/identityFunc.js
/**
* Returns the first argument it receives.
*/
export default function identityFunc(x) {
return x;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8f638d54f05451aee3a17081046597bf45ae0ce3.ts | TypeScript | // Loaded from https://deno.land/x/sodium/basic_types.ts
// Type definitions for libsodium-wrappers 0.7
// Project: https://github.com/jedisct1/libsodium.js
// Definitions by: Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.1
/... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8fb2bd80dc822acb788f4dcbc8d254bcece5bd58.ts | TypeScript | // Loaded from https://deno.land/x/oak/server_sent_event.ts
// Copyright 2018-2021 the oak authors. All rights reserved. MIT license.
import type { Application } from "./application.ts";
import { assert, BufWriter } from "./deps.ts";
import type { ServerRequest } from "./types.d.ts";
const encoder = new TextEncoder... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8fc82c04c3da476b57cb6815993113e94aa5fb7b.ts | TypeScript | // Loaded from https://deno.land/std@0.84.0/_util/os.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
export const osType = (() => {
if (globalThis.Deno != null) {
return Deno.build.os;
}
// deno-lint-ignore no-explicit-any
const navigat... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8ff0ffe6eb419da20775dcf1999218ba4925cb7f.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/ws/resume.ts
import { DiscordGatewayOpcodes } from "../types/codes/gateway_opcodes.ts";
import { ws } from "./ws.ts";
export async function resume(shardId: number) {
ws.log("RESUMING", { shardId });
// NOW WE HANDLE RESUMING THIS SHARD
// Get the o... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/8fff27d7562ccc464f0749d51a915fe30323be39.ts | TypeScript | // Loaded from https://deno.land/std@0.73.0/path/_constants.ts
// Copyright the Browserify authors. MIT License.
// Ported from https://github.com/browserify/path-browserify/
/** This module is browser compatible. */
// Alphabet chars.
export const CHAR_UPPERCASE_A = 65; /* A */
export const CHAR_LOWERCASE_A = 97; /... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90026a86745535fce55b409466f187e4e55de28f.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/channels/threads/thread_member.ts
export interface ThreadMember {
/** The id of the thread */
id: string;
/** The id of the user */
userId: string;
/** The time the current user last joined the thread */
joinTimestamp: string;
/** Any u... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/900731866dd0c5e605bbc489f7d57797b84e53e3.ts | TypeScript | // Loaded from https://deno.land/std@0.102.0/path/separator.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
import { isWindows } from "../_util/os.ts";
export const SEP = isWindows ? "\\" : "/";
export const SEP_PATTERN = isWindows ? /[\\/]+/ : /\/... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9016f9dbae6daca0ac5b0a94caeb0aace51f7748.ts | TypeScript | // Loaded from https://deno.land/std@0.80.0/encoding/_yaml/dumper/dumper_state.ts
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
// Copyright 2018-2020 the Deno authors. All... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/903c82575c01f4f378b0c338643abd4e41fd3a48.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/guilds/get_guild.ts
/** https://discord.com/developers/docs/resources/guild#get-guild */
export interface GetGuildQuery {
/** When true, will return approximate member and presence counts for the guild */
withCounts?: boolean;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90704641c81576d268079355a67d613274b7d7a3.ts | TypeScript | // Loaded from https://deno.land/x/case/camelCase.ts
import upperCase from "./upperCase.ts";
import normalCase from "./normalCase.ts";
export default function camelCase(
value: string,
locale?: string,
mergeNumbers?: boolean,
): string {
let result = normalCase(value, locale);
// Replace periods between n... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90a121a582e16dde66434c1bf0bff57c27db2d4f.ts | TypeScript | // Loaded from https://deno.land/x/cliffy@v0.18.0/ansi/ansi.ts
import * as ansiEscapes from "./ansi_escapes.ts";
import type { Chain } from "./chain.ts";
type Args = Array<unknown>;
type Executor = (this: AnsiChain, ...args: Args) => string;
type Property = string | Executor;
type PropertyNames = keyof Chain<AnsiCha... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90b2301a85e161d1c439c23f319484b4d1f9b5bd.ts | TypeScript | // Loaded from https://deno.land/std@0.104.0/path/mod.ts
// Copyright the Browserify authors. MIT License.
// Ported mostly from https://github.com/browserify/path-browserify/
// This module is browser compatible.
import { isWindows } from "../_util/os.ts";
import * as _win32 from "./win32.ts";
import * as _posix fr... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90b9eff0e637acf1f4eef040483d3ff3c159b770.ts | TypeScript | // Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/utilities/TypeInfo.js
import find from '../polyfills/find.js';
import { Kind } from '../language/kinds.js';
import { getVisitFn } from '../language/visitor.js';
import { isNode } from '../language/ast.js';
import { isObjectType, isInterfaceType, isEnumType, ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90d9c02fa65697d73d0db3baa7fa890c1874b174.ts | TypeScript | // Loaded from https://deno.land/std@0.92.0/async/pool.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/**
* pooledMap transforms values from an (async) iterable into another async
* iterable. The transforms are done concurrently, with a max concurrency
* defined by the poolLimit.
*... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/90ec5cda570e16197824a58900b082d5fd13d21d.ts | TypeScript | // Loaded from https://deno.land/x/compress@v0.3.8/zlib/deflate.ts
// from https://github.com/nodeca/pako
import * as zlib_deflate from "./zlib/deflate.ts";
import { concatUint8Array } from "../utils/uint8.ts";
import { message as msg, CODE } from "./zlib/messages.ts";
import ZStream from "./zlib/zstream.ts";
import ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9100e056725cc2564238a20ba12bea2a44e290cd.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/misc/edit_bot_status.ts
import { eventHandlers } from "../../bot.ts";
import { DiscordGatewayOpcodes } from "../../types/codes/gateway_opcodes.ts";
import type { StatusUpdate } from "../../types/gateway/status_update.ts";
import { ws } from "../../... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/911efbb0e9f93f61f7622785ba06fb1668294e14.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/activity/activity_assets.ts
/** https://discord.com/developers/docs/topics/gateway#activity-object-activity-assets */
export interface ActivityAssets {
/** The id for a large asset of the activity, usually a snowflake */
largeImage?: string;
/*... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/912159cca395c89550a8bf4dd96c59caa7a0491c.ts | TypeScript | // Loaded from https://deno.land/x/djwt@v1.9/_algorithm.ts
/*
* JSW §1: Cryptographic algorithms and identifiers for use with this specification
* are described in the separate JSON Web Algorithms (JWA) specification:
* https://www.rfc-editor.org/rfc/rfc7518
*/
export type Algorithm = "none" | "HS256" | "HS512" |... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9133f7a8f1a174a23c2156aba6a4bf263fc37d8c.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/interactions/commands/edit_global_application_command.ts
import { ApplicationCommandOption } from "./application_command_option.ts";
/** https://discord.com/developers/docs/interactions/slash-commands#edit-global-application-command-json-params */
e... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/913ad2ee1d96e794e75ab086ebbc44a621318c0e.ts | TypeScript | // Loaded from https://deno.land/x/god_crypto@v1.4.3/rsa.ts
export * from "./src/rsa/mod.ts";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9146acc8dafa82f6d8451792e7824554910c797b.ts | TypeScript | // Loaded from https://deno.land/x/cliffy@v0.18.0/prompt/checkbox.ts
import type { KeyEvent } from "../keycode/mod.ts";
import { blue, dim, green, red } from "./deps.ts";
import { Figures } from "./figures.ts";
import {
GenericList,
GenericListKeys,
GenericListOption,
GenericListOptions,
GenericListOptionSe... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/914dd2006ee4835291856b75f53266104d257c72.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/repeat.js
import _curry2 from './internal/_curry2.js';
import always from './always.js';
import times from './times.js';
/**
* Returns a fixed list of size `n` containing a specified identical value.
*
* @func
* @memberOf R
* @since v0.1.1
* @category Li... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/917d25b1356f5415c8ae59cf11feadb4b161d74a.ts | TypeScript | // Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isAlpha.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
// @ts-ignore allowing typedoc to build
import { alpha } from '../helpers/alpha.ts';
export const isAlpha = (str: string, locale = 'en-US') => ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9193cd2bdcf4d4a43841bfbd807ffcb37617a43f.ts | TypeScript | // Loaded from https://deno.land/x/oak@v6.3.1/mediaTyper.ts
/*!
* Adapted directly from media-typer at https://github.com/jshttp/media-typer/
* which is licensed as follows:
*
* media-typer
* Copyright(c) 2014-2017 Douglas Christopher Wilson
* MIT Licensed
*/
const SUBTYPE_NAME_REGEXP = /^[A-Za-z0-9][A-Za-z0-... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/91a3278cffe125ea1d39ab32b68668328582caa0.ts | TypeScript | // Loaded from https://deno.land/x/args@1.0.7/command-errors.ts
import {
ParseError,
} from "./types.ts";
import {
FlagError,
} from "./flag-errors.ts";
/**
* Class of error created by `CommandType::extract`
* @template ErrList Type of array of {@link FlagError}
*/
export class CommandError<
ErrList extend... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/91d50db2db9f158f1437cc38fc3506a9de0bc11c.ts | TypeScript | // Loaded from https://deno.land/x/denodb@v1.0.18/lib/database.ts
import type { Connector } from "./connectors/connector.ts";
import type {
FieldMatchingTable,
Model,
ModelFields,
ModelSchema,
} from "./model.ts";
import { QueryBuilder, QueryDescription } from "./query-builder.ts";
import {
PostgresConnecto... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9240c6695bd5b3ade49aaa84671c8400c6f9938c.ts | TypeScript | // Loaded from https://deno.land/std@0.92.0/async/mux_async_iterator.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { Deferred, deferred } from "./deferred.ts";
interface TaggedYieldedValue<T> {
iterator: AsyncIterableIterator<T>;
value: T;
}
/** The MuxAsyncIterator class ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/924d94b42c1b49b10f328f50cf64d05dafe859a4.ts | TypeScript | // Loaded from https://deno.land/std@0.88.0/_util/has_own_property.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/**
* Determines whether an object has a property with the specified name.
* Avoid calling prototype builtin `hasOwnProperty` for two reasons:
*
* 1. `hasOwnProperty` i... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/926ee8ee9102fe56b74d0cd8a117b6c2997bfbc4.ts | TypeScript | // Loaded from https://deno.land/std@0.93.0/path/_interface.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
/**
* A parsed path object generated by path.parse() or consumed by path.format().
*/
export interface ParsedPath {
/**
* The root of ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/927c6d70265b2c5a9fb2f822f0e0dfe3c8500149.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/voice/voice_state.ts
import { GuildMemberWithUser } from "../members/guild_member.ts";
/** https://discord.com/developers/docs/resources/voice#voice-state-object-voice-state-structure */
export interface VoiceState {
/** The guild id this voice st... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92a00cd296834c4952c29422dbe17579d36b816a.ts | TypeScript | // Loaded from https://deno.land/std@0.93.0/path/win32.ts
// Copyright the Browserify authors. MIT License.
// Ported from https://github.com/browserify/path-browserify/
// This module is browser compatible.
import type { FormatInputPathObject, ParsedPath } from "./_interface.ts";
import {
CHAR_BACKWARD_SLASH,
C... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92a52eb4569357685b8f21f0baa42e67dc4caadd.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/messages/components/message_components.ts
import { ActionRow } from "./action_row.ts";
import { ButtonComponent } from "./button_component.ts";
export type MessageComponent = ActionRow | ButtonComponent;
export type MessageComponents = MessageCompo... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92c3e60f1508efcb069d428f3b4277bbf4f4a5b3.ts | TypeScript | // Loaded from https://deno.land/std@0.101.0/path/posix.ts
// Copyright the Browserify authors. MIT License.
// Ported from https://github.com/browserify/path-browserify/
// This module is browser compatible.
import type { FormatInputPathObject, ParsedPath } from "./_interface.ts";
import { CHAR_DOT, CHAR_FORWARD_SL... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92d5b1d88aaa3496a74bddce8ec7bb6509a76afd.ts | TypeScript | // Loaded from https://deno.land/std@0.69.0/async/pool.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/**
* pooledMap transforms values from an (async) iterable into another async
* iterable. The transforms are done concurrently, with a max concurrency
* defined by the poolLimit.
*... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92eddba923caa3a2a449f3df7728ce90ab52e0c6.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/discovery/modify_guild_discovery_metadata.ts
// TODO: add docs link
export interface ModifyGuildDiscoveryMetadata {
/** The id of the primary discovery category. Default: 0 */
primaryCategoryId?: number | null;
/** Up to 10 discovery search kek... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92f25bed9413840ab7090f43c727ec0f6141247c.ts | TypeScript | // Loaded from https://deno.land/x/mysql/src/constant/capabilities.ts
enum ServerCapabilities {
CLIENT_PROTOCOL_41 = 0x00000200,
CLIENT_CONNECT_WITH_DB = 0x00000008,
CLIENT_LONG_FLAG = 0x00000004,
CLIENT_DEPRECATE_EOF = 0x01000000,
CLIENT_LONG_PASSWORD = 0x00000001,
CLIENT_TRANSACTIONS = 0x00002000,
CLI... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/92f62fbca0fcf140695b1347dd3443f4d08e85d5.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_forceReduced.js
export default function _forceReduced(x) {
return {
'@@transducer/value': x,
'@@transducer/reduced': true
};
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9308baec008c11e5d9fdd35e26c857d4b6de6d23.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/pickAll.js
import _curry2 from './internal/_curry2.js';
/**
* Similar to `pick` except that this one includes a `key: undefined` pair for
* properties that don't exist.
*
* @func
* @memberOf R
* @since v0.1.0
* @category Object
* @sig [k] -> {k: v} -> ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/930c649c45749da3c2eabc2af8612323834b47e9.ts | TypeScript | // Loaded from https://deno.land/std@0.101.0/textproto/mod.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// Based on https://github.com/golang/go/tree/master/src/net/textproto
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
/... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/930cdcb3788f30348526fcff522f787686532e60.ts | TypeScript | // Loaded from https://deno.land/x/path_to_regexp@v6.2.0/index.ts
/**
* Tokenizer results.
*/
interface LexToken {
type:
| "OPEN"
| "CLOSE"
| "PATTERN"
| "NAME"
| "CHAR"
| "ESCAPED_CHAR"
| "MODIFIER"
| "END";
index: number;
value: string;
}
/**
* Tokenize input string.
*/
fu... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/931284ff6f206e5b6cb8434500b5e93d5189dda3.ts | TypeScript | // Loaded from https://deno.land/std@0.77.0/fs/ensure_link.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import { exists, existsSync } from "./exists.ts";
import { getFileInfoType } from... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9324fe55cec9116cd64020166b666c670ed52c49.ts | TypeScript | // Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isInt.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
/**
* @ignore
*/
const int = /^(?:[-+]?(?:0|[1-9][0-9]*))$/;
/**
* @ignore
*/
const intLeadingZeroes = /^[-+]?[0-9]+$/;
type IntOptions = {... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9332e6f272be77a67cc92a5fc04e228c158f6435.ts | TypeScript | // Loaded from https://deno.land/std@0.79.0/path/win32.ts
// Copyright the Browserify authors. MIT License.
// Ported from https://github.com/browserify/path-browserify/
/** This module is browser compatible. */
import type { FormatInputPathObject, ParsedPath } from "./_interface.ts";
import {
CHAR_BACKWARD_SLASH,
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/933a1e88e36f7711de7e0ef6d06ba3998e3b7d0a.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_equals.js
import _arrayFromIterator from './_arrayFromIterator.js';
import _includesWith from './_includesWith.js';
import _functionName from './_functionName.js';
import _has from './_has.js';
import _objectIs from './_objectIs.js';
import keys from '... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/938b32b0d6751f3aba67ef524c04833e96350f2a.ts | TypeScript | // Loaded from https://deno.land/std@0.81.0/io/ioutil.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import type { BufReader } from "./bufio.ts";
type Reader = Deno.Reader;
type Writer = Deno.Writer;
import { assert } from "../_util/assert.ts";
const DEFAULT_BUFFER_SIZE = 32 * 1024;
/... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/93969ba33e02ef46efcdfdf07a322e9ddb0b2bdc.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/channels/stage_instance.ts
/** https://discord.com/developers/docs/resources/stage-instance#auto-closing-stage-instance-structure */
export interface StageInstance {
/** The id of this Stage instance */
id: string;
/** The guild id of the assoc... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/93c1ee29889dba621d84cfe6545b2d52344176f5.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_filter.js
export default function _filter(fn, list) {
var idx = 0;
var len = list.length;
var result = [];
while (idx < len) {
if (fn(list[idx])) {
result[result.length] = list[idx];
}
idx += 1;
}
return result;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/93f37665c0a570d9251dd8146fc132832d09ad3a.ts | TypeScript | // Loaded from https://deno.land/x/segno@v1.1.0/lib/helpers/toFloat.ts
import { isFloat } from '../validations/isFloat.ts';
export const toFloat = (str: string) => {
if (!isFloat(str)) return NaN;
return parseFloat(str);
};
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/93f5727abb786740ba3305b5fee272398a647912.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/messages/message_flags.ts
/** https://discord.com/developers/docs/resources/channel#message-object-message-flags */
export enum DiscordMessageFlags {
/** This message has been published to subscribed channels (via Channel Following) */
Crossposte... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9409c3f194163c446592e150bebb737c3d28dfec.ts | TypeScript | // Loaded from https://deno.land/std@0.85.0/fs/empty_dir.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { join } from "../path/mod.ts";
/**
* Ensures that a directory is empty.
* Deletes directory contents if the directory is not empty.
* If the directory does not exist, it i... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/943f0755a028a1da5be5c13fdf0f49647f21e996.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/util/mod.ts
export * from "./bigint.ts";
export * from "./cache_members.ts";
export * from "./collection.ts";
export * from "./constants.ts";
export * from "./hash.ts";
export * from "./loop_object.ts";
export * from "./permissions.ts";
export * from "./ut... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/94a12fce31b462e13e32ed21e5e47fc185c7d516.ts | TypeScript | // Loaded from https://deno.land/x/validasaur/src/rules/required_if.ts
import type { Validity, Rule } from "../types.ts";
import { required } from "./required.ts";
import { optionallyValid } from "../utils.ts";
export function requiredIf(field: string, fieldValue: any): Rule {
return function requiredIfRule(value:... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/94f90a6d01b8280ce5c99f6f4b54af76a92032ef.ts | TypeScript | // Loaded from https://deno.land/std@0.73.0/async/pool.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/**
* pooledMap transforms values from an (async) iterable into another async
* iterable. The transforms are done concurrently, with a max concurrency
* defined by the poolLimit.
*... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/953fe96d93f20d7016601beab985b049123de5eb.ts | TypeScript | // Loaded from https://deno.land/x/mysql/src/pool.ts
import { DeferredStack } from "./deferred.ts";
import { Connection } from "./connection.ts";
import { log } from "./logger.ts";
/** @ignore */
export class PoolConnection extends Connection {
_pool?: ConnectionPool = undefined;
private _idleTimer?: number = u... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9549dc5814bceb45a6d2e20bf087d12b061b92c9.ts | TypeScript | // Loaded from https://deno.land/x/cliffy@v0.18.0/table/utils.ts
/**
* Get next words from the beginning of [content] until all words have a length lower or equal then [length].
*
* @param length Max length of all words.
* @param content The text content.
*/
import { Cell, ICell } from "./cell.ts";
import {... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9562928eb4e123f0d7df24345680c978d97c1f1b.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/channels/start_typing.ts
import { cacheHandlers } from "../../cache.ts";
import { rest } from "../../rest/rest.ts";
import { DiscordChannelTypes } from "../../types/channels/channel_types.ts";
import { Errors } from "../../types/discordeno/errors.t... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95665d2af519997768eeb1310050bbda412864bc.ts | TypeScript | // Loaded from https://deno.land/std@0.74.0/hash/mod.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { Hash } from "./_wasm/hash.ts";
import type { Hasher } from "./hasher.ts";
export type { Hasher } from "./hasher.ts";
export type SupportedAlgorithm =
| "md2"
| "md4"
| "m... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95a78e1eb92f0360e677a25cf28637de35ab5f4b.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/misc/image_size.ts
/** https://discord.com/developers/docs/reference#image-formatting */
export type DiscordImageSize = 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95a9947658822d50cae145f3b9261f599c811642.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/util/hash.ts
export function iconHashToBigInt(hash: string) {
let animated = false;
if (hash.startsWith("a_")) {
animated = true;
hash = hash.substring(2);
}
return {
animated,
bigint: BigInt(`0x${hash}`),
};
}
export function ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95a9b9250391e1c51b7bf168cfd5a4ccf8bc6a47.ts | TypeScript | // Loaded from https://deno.land/std@0.84.0/async/mod.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
export * from "./deferred.ts";
export * from "./delay.ts";
export * from "./mux_async_iterator.ts";
export * from "./pool.ts";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95c66f11d9b73de16ff4b3977763cf626cc78bf5.ts | TypeScript | // Loaded from https://deno.land/std@0.101.0/path/_interface.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
/**
* A parsed path object generated by path.parse() or consumed by path.format().
*/
export interface ParsedPath {
/**
* The root of... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95d0d43df48895be8773eb459ac117d3fef6472f.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/handlers/guilds/GUILD_BAN_ADD.ts
import { eventHandlers } from "../../bot.ts";
import { cacheHandlers } from "../../cache.ts";
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
import type { GuildBanAddRemove } from "../.... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95ebd20352d2a2e8796c224887ff7f4b35517df5.ts | TypeScript | // Loaded from https://deno.land/std@0.101.0/hash/sha1.ts
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/*
* [js-sha1]{@link https://github.com/emn178/js-sha1}
*
* @version 0.6.0
* @author Chen, Yi-Cyuan [emn178@gmail.com]
* @copyright Chen, Yi-Cyuan 2014-2017
* @license MIT
*/
ex... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/95f412bc3a958ae29ebc9bc0d6e1d8869807514d.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/gateway/status_types.ts
/** https://discord.com/developers/docs/topics/gateway#update-status-status-types */
export type DiscordStatusTypes = "online" | "dnd" | "idle" | "invisible" | "offline";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9605cdda4eae96261104b10584636127a82cfcf5.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/guilds/get_voice_regions.ts
import { rest } from "../../rest/rest.ts";
import type { VoiceRegion } from "../../types/voice/voice_region.ts";
import { Collection } from "../../util/collection.ts";
import { endpoints } from "../../util/constants.ts";... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9665c34a77935994e17829246c0ca4d9001c1f09.ts | TypeScript | // Loaded from https://deno.land/x/dnit@dnit-v1.11.0/adl-gen/runtime/utils.ts
import type * as AST from "./sys/adlast.ts";
export function isEnum(union : AST.Union) : boolean {
for (let field of union.fields) {
if (!isVoid(field.typeExpr)) {
return false;
}
}
return true;
}
export function isVoi... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/966ae4047f6d71a9b711e3c2dae768a52389a5d3.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/gateway/get_gateway_bot.ts
import { SessionStartLimit } from "./session_start_limit.ts";
/** https://discord.com/developers/docs/topics/gateway#get-gateway-bot */
export interface GetGatewayBot {
/** The WSS URL that can be used for connecting to ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/96ae8b1a529cea15dad514f4b2758b81a11b5c8a.ts | TypeScript | // Loaded from https://deno.land/std@0.69.0/path/mod.ts
// Copyright the Browserify authors. MIT License.
// Ported mostly from https://github.com/browserify/path-browserify/
/** This module is browser compatible. */
import { isWindows } from "./_constants.ts";
import * as _win32 from "./win32.ts";
import * as _posi... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/96eb50e55109dc199d4f1f82db654f1271a2ed7f.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/integrations/get_integrations.ts
import { rest } from "../../rest/rest.ts";
import type { Integration } from "../../types/integrations/integration.ts";
import { endpoints } from "../../util/constants.ts";
import { requireBotGuildPermissions } from ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/96ffc1e38aa910376b9584f63a3fe04af09d4fe7.ts | TypeScript | // Loaded from https://deno.land/x/semver@v1.0.0/mod.ts
export type ReleaseType =
| "pre"
| "major"
| "premajor"
| "minor"
| "preminor"
| "patch"
| "prepatch"
| "prerelease";
export type Operator =
| "==="
| "!=="
| ""
| "="
| "=="
| "!="
| ">"
| ">="
| "<"
| "<=";
export interfa... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/97016f4c5b86b703da27b18afdbf5491171f7452.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/toString.js
import _curry1 from './internal/_curry1.js';
import _toString from './internal/_toString.js';
/**
* Returns the string representation of the given value. `eval`'ing the output
* should result in a value equivalent to the input value. Many of the ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/970ff5282cd842f9478906c4fec8a73a179ad85f.ts | TypeScript | // Loaded from https://deno.land/x/god_crypto@v0.2.0/src/helper.ts
export function str2bytes(str: string): Uint8Array {
const encoder = new TextEncoder();
return encoder.encode(str);
}
export function hex(bytes: Uint8Array): string {
let output = "";
for(const b of bytes) output += b.toString(16).padStart(... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/97356c823dbc381e4505c6bd073edb2c6bb3a0b7.ts | TypeScript | // Loaded from https://deno.land/x/compress@v0.3.8/gzip/writer_gunzip.ts
import { EventEmitter, Crc32Stream } from "../deps.ts";
import { concatUint8Array } from "../utils/uint8.ts";
import { checkHeader, checkTail } from "./gzip.ts";
import { Inflate } from "../zlib/mod.ts";
type File = Deno.File;
interface Option... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/976d5cb8fc5ce22551731ee11ca4b97000e404a5.ts | TypeScript | // Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_xpromap.js
import _curry3 from './_curry3.js';
import _xfBase from './_xfBase.js';
import _promap from './_promap.js';
function XPromap(f, g, xf) {
this.xf = xf;
this.f = f;
this.g = g;
}
XPromap.prototype['@@transducer/init'] = _xfBase.init;
X... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/977e2d1154aa5a452e6996597ae54ff1af663db2.ts | TypeScript | // Loaded from https://deno.land/x/cliffy@v0.18.0/prompt/figures.ts
const main = {
ARROW_UP: "↑",
ARROW_DOWN: "↓",
ARROW_LEFT: "←",
ARROW_RIGHT: "→",
ARROW_UP_LEFT: "↖",
ARROW_UP_RIGHT: "↗",
ARROW_DOWN_RIGHT: "↘",
ARROW_DOWN_LEFT: "↙",
RADIO_ON: "◉",
RADIO_OFF: "◯",
TICK: "✔",
CROSS: "✘",
EL... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/97907cb5b328a3b72865b12faf143c5e3c9f0b95.ts | TypeScript | // Loaded from https://deno.land/std@0.83.0/flags/mod.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assert } from "../_util/assert.ts";
export interface Args {
/** Contains all the arguments that didn't have an option associated with
* them. */
_: Array<string | numbe... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/979a48799c6e8fbbf20c3cdebf4824236f52f93a.ts | TypeScript | // Loaded from https://deno.land/std@0.78.0/encoding/_yaml/type/bool.ts
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
// Copyright 2018-2020 the Deno authors. All rights re... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/982ccc06b08674ffef492f390c143714631da95b.ts | TypeScript | // Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/users/create_group_dm.ts
/** https://discord.com/developers/docs/resources/user#create-group-dm */
export interface CreateGroupDM {
/** Access tokens of users that have granted your app the `gdm.join` scope */
accessTokens: string[];
/** A dict... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/98561c8769391140d14b971167cb9a2d66855bbd.ts | TypeScript | // Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/index.js
export { validate } from './validate.js';
export { ValidationContext } from './ValidationContext.js';
// All validation rules in the GraphQL Specification.
export { specifiedRules } from './specifiedRules.js'; // Spec Section: "Executable... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/9869d98ee939ba8e5f6c333c8d745063f17cad68.ts | TypeScript | // Loaded from https://deno.land/std@0.81.0/datetime/mod.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { DateTimeFormatter } from "./formatter.ts";
export const SECOND = 1e3;
export const MINUTE = SECOND * 60;
export const HOUR = MINUTE * 60;
export const DAY = HOUR * 24;
expo... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_bundler/tests/.cache/deno/987fe90be7227917481e81f94403aeafa64835ca.ts | TypeScript | // Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/language/blockString.js
/**
* Produces the value of a block string from its parsed raw value, similar to
* CoffeeScript's block string, Python's docstring trim or Ruby's strip_heredoc.
*
* This implements the GraphQL spec's BlockStringValue() static algo... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.