/** * Ultimate Lodash - A modern, comprehensive utility library * * Complete Lodash parity plus advanced features: * - Enhanced array utilities (deepFlatten, arrayDiff, partitionBy) * - Object enhancements (deepPick, deepOmit, transformKeys) * - Advanced string utilities (slugify, truncateWords, template) * - Functional programming extras (curry with placeholders, pipe, compose) * - Async utilities (promiseAllSettled, debounceAsync, throttleAsync) * - Math functions (mean, median, mode, standardDeviation) * - Collection utilities (groupByMultiple, sortByMultiple) * - Type guards and utilities for TypeScript * * @author Noor Mohammad * @version 1.0.0 * @license MIT */ export * from "./array/index.js"; export * from "./object/index.js"; export * from "./string/index.js"; export * from "./function/index.js"; export * from "./collection/index.js"; export * from "./math/index.js"; export * from "./lang/index.js"; export * from "./util/index.js"; export { isEqual, clone } from "./internal/utils.js";