@bemedev/basifun
Version:
Basic ts functions
26 lines (25 loc) • 1.67 kB
JavaScript
export { isArray } from './functions/arrays/isArray.js';
export { toArray } from './functions/arrays/toArray.js';
export { switchV, switchValue } from './functions/booleans/switchValue.js';
export { genericFunction } from './functions/functions/generic.js';
export { isAsyncF } from './functions/functions/isAsyncF.js';
export { partialCall } from './functions/functions/partialCall.js';
export { partialCallO } from './functions/functions/partialCallO.js';
export { anyPromises } from './functions/functions/promises/any.js';
export { asyncfy } from './functions/functions/promises/asyncify.js';
export { typedPromisify } from './functions/functions/promises/promisify.js';
export { racePromises } from './functions/functions/promises/race.js';
export { MAX_TIMEOUT, withTimeout } from './functions/functions/promises/withTimeout.js';
export { reFunction } from './functions/functions/reFunction.js';
export { log10 } from './functions/numbers/log10.js';
export { toStringFlat } from './functions/numbers/toStringFlat.js';
export { exactLength } from './functions/strings/exactLength.js';
export { inRangeExclusive } from './functions/strings/inRangeExclusive.js';
export { inRangeInclusive } from './functions/strings/inRangeInclusive.js';
export { maxLength } from './functions/strings/maxLength.js';
export { maxOrEqualLength } from './functions/strings/maxOrEqualLength.js';
export { minLength } from './functions/strings/minLength.js';
export { minOrEqualLength } from './functions/strings/minOrEqualLength.js';
export { multiChar } from './functions/strings/multiChar.js';
export { isDefined } from './functions/types/isDefined.js';
//# sourceMappingURL=index.js.map