UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

36 lines 1.48 kB
export { allEmpty } from "./allEmpty"; export { allNil } from "./allNil"; export { allNotEmpty } from "./allNotEmpty"; export { allNotNil } from "./allNotNil"; export { anyEmpty } from "./anyEmpty"; export { anyNil } from "./anyNil"; export { anyNotEmpty } from "./anyNotEmpty"; export { anyNotNil } from "./anyNotNil"; export { clone } from "./clone"; export { cloneExclusive } from "./cloneExclusive"; export { cloneInclusive } from "./cloneInclusive"; export { firstNotEmpty } from "./firstNotEmpty"; export { firstNotNil } from "./firstNotNil"; export { forEachProp } from "./forEachProp"; export { getProp } from "./getProp"; export { hasProp } from "./hasProp"; export { isEmpty } from "./isEmpty"; export { isNil } from "./isNil"; export { isNotEmpty } from "./isNotEmpty"; export { isNotNil } from "./isNotNil"; export { isNotNull } from "./isNotNull"; export { isNotUndefined } from "./isNotUndefined"; export { isNull } from "./isNull"; export { isPlain } from "./isPlain"; export { isPrimitive } from "./isPrimitive"; export { isPromise } from "./isPromise"; export { isPrototype } from "./isPrototype"; export { isRegular } from "./isRegular"; export { isUndefined } from "./isUndefined"; export { keys } from "./keys"; export { mapEachProp } from "./mapEachProp"; export { mergeProps } from "./mergeProps"; export { regenProps } from "./regenProps"; export { setProp } from "./setProp"; export { toString } from "./toString"; export { toStringTag } from "./toStringTag";