Skip to main content
Module

x/isx/mod.ts

TypeScript-first is function collections
Go to Latest
File
// Copyright 2022-latest Tomoki Miyauchi. All rights reserved. MIT license.// This module is browser compatible.
export { isAsyncIterable, isBigint, isBoolean, isDate, isEmptyObject, isError, isFalse, isFalsy, isFunction, isIterable, isNonNullable, isNull, isNullable, isNumber, isObject, isPrimitive, isPromise, isRegExp, isString, isSymbol, isTrue, isTruthy, isUndefined, type Primitive,} from "./top_types.ts";export { isEven, isNegativeNumber, isNonNegativeInteger, isNonNegativeNumber, isNonPositiveNumber, isOdd, isPositiveNumber,} from "./numbers.ts";export { type DateFormat, type DateTimeFormat, isHexColorFormat, isHostnameFormat, isRfc3339DateFormat, isRfc3339DateTimeFormat, isRfc3339TimeFormat, type TimeFormat,} from "./strings.ts";export { isValidDate } from "./dates.ts";export { hasOwn } from "./object.ts";