UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

38 lines (37 loc) 1.54 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 { getPropIgnoreCase } from './getPropIgnoreCase'; 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';