-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
51 lines (48 loc) · 999 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2021-Present the Unitest authors. All rights reserved. MIT license.
// This module is browser compatible.
export {
AssertionError,
} from "https://deno.land/std@0.118.0/testing/asserts.ts";
export {
isBoolean,
isDate,
isDateString,
isEmpty,
isEmptyObject,
isError,
isEven,
isFalse,
isFunction,
isHexColor,
isLength0,
isNegativeNumber,
isNil,
isNull,
isNumber,
isObject,
isOdd,
isPositiveNumber,
isPromise,
isString,
isSymbol,
isTrue,
isUndefined,
isValidDate,
} from "https://deno.land/x/isx@v1.0.0-beta.17/mod.ts";
export {
bgYellow,
black,
blue,
bold,
brightBlack,
gray,
green,
magenta,
red,
yellow,
} from "https://deno.land/std@0.118.0/fmt/colors.ts";
// third party
// deno standard module of sprintf is print error when specifier has not used
// see https://deno.land/std@0.115.1/fmt/printf.ts#L743
// TODO:(miayuci) re-implementation
export { sprintf } from "https://cdn.skypack.dev/sprintf-js@1.1.2?dts";