export const __: "@argument/place"; export const add: typeof add_module; export const allValid: typeof allValid_module; export const appendIsArrayExist: typeof appendIsArrayExist_module; export const append: typeof append_module; export const arrayConcat: typeof arrayConcat_module; export const arrayRepeat: typeof arrayRepeat_module; export const arraySlice: typeof arraySlice_module; export const arrayToObjectByDataFormat: typeof arrayToObjectByDataFormat_module; export const arraySum: typeof arraySum_module; export const asyncReplace: typeof asyncReplace_module; export const clone: typeof clone_module; export const calculate: typeof calculate_module; export const count: typeof count_module; export const dec: typeof dec_module; export const each: typeof each_module; export const empty: typeof empty_module; export const divide: typeof divide_module; export const equal: typeof equal_module; export const filter: typeof filter_module; export const first: typeof first_module; export const getData: typeof getData_module; export const getKey: typeof getKey_module; export const getTypeof: typeof getTypeof_module; export const getUniq: typeof getUniq_module; export const getValue: typeof getValue_module; export const groupBy: typeof groupBy_module; export const gt: typeof gt_module; export const gte: typeof gte_module; export const has: typeof has_module; export const ifUndefined: typeof ifUndefined_module; export const inc: typeof inc_module; export const indexOf: typeof indexOf_module; export const indexOfExist: typeof indexOfExist_module; export const indexOfNotExist: typeof indexOfNotExist_module; export const insert: typeof insert_module; export const isExact: typeof isExact_module; export const isEmpty: typeof isEmpty_module; export const isExactbyRegExp: typeof isExactbyRegExp_module; export const isJson: typeof isJson_module; export const jsonToArray: typeof jsonToArray_module; export const last: typeof last_module; export const lastIndexOf: typeof lastIndexOf_module; export const like: typeof like_module; export const limit: typeof limit_module; export const lt: typeof lt_module; export const lte: typeof lte_module; export const map: typeof map_module; export const mergeInWhere: typeof mergeInWhere_module; export const mergeWithKey: typeof mergeWithKey_module; export const noteq: typeof noteq_module; export const onDelay: typeof onDelay_module; export const onSequence: typeof onSequence_module; export const onWait: typeof onWait_module; export const parseString: typeof parseString_module; export const pipe: typeof pipe_module; export const random: typeof random_module; export const range: typeof range_module; export const reduce: typeof reduce_module; export const regexCountGroup: typeof regexCountGroup_module; export const parseJson: typeof parseJson_module; export const remove: typeof remove_module; export const removeFromKey: typeof removeFromKey_module; export const repeat: typeof repeat_module; export const roundDecimal: typeof roundDecimal_module; export const selectInData: typeof selectInData_module; export const shuffle: typeof shuffle_module; export const someValid: typeof someValid_module; export const sort: typeof sort_module; export const stringCamelCase: typeof stringCamelCase_module; export const stringEscape: typeof stringEscape_module; export const stringCapitalize: typeof stringCapitalize_module; export const stringKebabCase: typeof stringKebabCase_module; export const stringLowerCase: typeof stringLowerCase_module; export const stringSnakeCase: typeof stringSnakeCase_module; export const stringSubs: typeof stringSubs_module; export const stringUnEscape: typeof stringUnEscape_module; export const stringUpperCase: typeof stringUpperCase_module; export const subtract: typeof subtract_module; export const swap: typeof swap_module; export const take: typeof take_module; export const toArray: typeof toArray_module; export const templateValue: typeof templateValue_module; export const toDouble: typeof toDouble_module; export const toInteger: typeof toInteger_module; export const toString: typeof toString_module; export const trim: typeof trim_module; export const trimEnd: typeof trimEnd_module; export const unique: typeof unique_module; export const trimStart: typeof trimStart_module; export const varExtend: typeof varExtend_module; export const where: typeof where_module; export const whereNot: typeof whereNot_module; /** * Get the type if arguments * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isArguments() *=> true */ export function isArguments(value: any): boolean; /** * Get the type if array * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isArray([]) *=> true */ export function isArray(value: any): boolean; /** * Get the type if boolean * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isBoolean(true) *=> true */ export function isBoolean(value: any): boolean; /** * Get the type if date * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isDate(new Date()) *=> true */ export function isDate(value: any): boolean; /** * Get the type if error * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isError(new Error()) *=> true */ export function isError(value: any): boolean; /** * Get the type if function * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isFunction() *=> true */ export function isFunction(value: any): boolean; /** * Get the type if null * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isNull(null) *=> true */ export function isNull(value: any): boolean; /** * Get the type if number * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isNumber(1) *=> true */ export function isNumber(value: any): boolean; /** * Get the type if object * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isObject({}) *=> true */ export function isObject(value: any): boolean; /** * Get the type if promise * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isPromise() *=> true */ export function isPromise(value: any): boolean; /** * Get the type if regexp * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isRegexp(/(1)/g) *=> true */ export function isRegexp(value: any): boolean; /** * Get the type if string * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isString('string') *=> true */ export function isString(value: any): boolean; /** * Get the type if uint16Array * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isUint16Array() *=> true */ export function isUint16Array(value: any): boolean; /** * Get the type if uint8Array * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isUint8Array() *=> true */ export function isUint8Array(value: any): boolean; /** * Get the type if undefined * * @since 1.4.7 * @category Collection * @param {any} value Pass any value to check its type * @returns {boolean} Return either Json to Array. * @example * * isUndefined(undefined) *=> true */ export function isUndefined(value: any): boolean; export const zip: typeof zip_module; export const multiply: typeof multiply_module; import { default as add_module } from './src/function/add.js'; import { default as allValid_module } from './src/function/allValid.js'; import { default as appendIsArrayExist_module } from './src/function/appendIsArrayExist.js'; import { default as append_module } from './src/function/append.js'; import { default as arrayConcat_module } from './src/function/arrayConcat.js'; import { default as arrayRepeat_module } from './src/function/arrayRepeat.js'; import { default as arraySlice_module } from './src/function/arraySlice.js'; import { default as arrayToObjectByDataFormat_module } from './src/function/arrayToObjectByDataFormat.js'; import { default as arraySum_module } from './src/function/arraySum.js'; import { default as asyncReplace_module } from './src/function/asyncReplace.js'; import { default as clone_module } from './src/function/clone.js'; import { default as calculate_module } from './src/function/calculate.js'; import { default as count_module } from './src/function/count.js'; import { default as dec_module } from './src/function/dec.js'; import { default as each_module } from './src/function/each.js'; import { default as empty_module } from './src/function/empty.js'; import { default as divide_module } from './src/function/divide.js'; import { default as equal_module } from './src/function/equal.js'; import { default as filter_module } from './src/function/filter.js'; import { default as first_module } from './src/function/first.js'; import { default as getData_module } from './src/function/getData.js'; import { default as getKey_module } from './src/function/getKey.js'; import { default as getTypeof_module } from './src/function/getTypeof.js'; import { default as getUniq_module } from './src/function/getUniq.js'; import { default as getValue_module } from './src/function/getValue.js'; import { default as groupBy_module } from './src/function/groupBy.js'; import { default as gt_module } from './src/function/gt.js'; import { default as gte_module } from './src/function/gte.js'; import { default as has_module } from './src/function/has.js'; import { default as ifUndefined_module } from './src/function/ifUndefined.js'; import { default as inc_module } from './src/function/inc.js'; import { default as indexOf_module } from './src/function/indexOf.js'; import { default as indexOfExist_module } from './src/function/indexOfExist.js'; import { default as indexOfNotExist_module } from './src/function/indexOfNotExist.js'; import { default as insert_module } from './src/function/insert.js'; import { default as isExact_module } from './src/function/isExact.js'; import { default as isEmpty_module } from './src/function/isEmpty.js'; import { default as isExactbyRegExp_module } from './src/function/isExactbyRegExp.js'; import { default as isJson_module } from './src/function/isJson.js'; import { default as jsonToArray_module } from './src/function/jsonToArray.js'; import { default as last_module } from './src/function/last.js'; import { default as lastIndexOf_module } from './src/function/lastIndexOf.js'; import { default as like_module } from './src/function/like.js'; import { default as limit_module } from './src/function/limit.js'; import { default as lt_module } from './src/function/lt.js'; import { default as lte_module } from './src/function/lte.js'; import { default as map_module } from './src/function/map.js'; import { default as mergeInWhere_module } from './src/function/mergeInWhere.js'; import { default as mergeWithKey_module } from './src/function/mergeWithKey.js'; import { default as noteq_module } from './src/function/noteq.js'; import { default as onDelay_module } from './src/function/onDelay.js'; import { default as onSequence_module } from './src/function/onSequence.js'; import { default as onWait_module } from './src/function/onWait.js'; import { default as parseString_module } from './src/function/parseString.js'; import { default as pipe_module } from './src/function/pipe.js'; import { default as random_module } from './src/function/random.js'; import { default as range_module } from './src/function/range.js'; import { default as reduce_module } from './src/function/reduce.js'; import { default as regexCountGroup_module } from './src/function/regexCountGroup.js'; import { default as parseJson_module } from './src/function/parseJson.js'; import { default as remove_module } from './src/function/remove.js'; import { default as removeFromKey_module } from './src/function/removeFromKey.js'; import { default as repeat_module } from './src/function/repeat.js'; import { default as roundDecimal_module } from './src/function/roundDecimal.js'; import { default as selectInData_module } from './src/function/selectInData.js'; import { default as shuffle_module } from './src/function/shuffle.js'; import { default as someValid_module } from './src/function/someValid.js'; import { default as sort_module } from './src/function/sort.js'; import { default as stringCamelCase_module } from './src/function/stringCamelCase.js'; import { default as stringEscape_module } from './src/function/stringEscape.js'; import { default as stringCapitalize_module } from './src/function/stringCapitalize.js'; import { default as stringKebabCase_module } from './src/function/stringKebabCase.js'; import { default as stringLowerCase_module } from './src/function/stringLowerCase.js'; import { default as stringSnakeCase_module } from './src/function/stringSnakeCase.js'; import { default as stringSubs_module } from './src/function/stringSubs.js'; import { default as stringUnEscape_module } from './src/function/stringUnEscape.js'; import { default as stringUpperCase_module } from './src/function/stringUpperCase.js'; import { default as subtract_module } from './src/function/subtract.js'; import { default as swap_module } from './src/function/swap.js'; import { default as take_module } from './src/function/take.js'; import { default as toArray_module } from './src/function/toArray.js'; import { default as templateValue_module } from './src/function/templateValue.js'; import { default as toDouble_module } from './src/function/toDouble.js'; import { default as toInteger_module } from './src/function/toInteger.js'; import { default as toString_module } from './src/function/toString.js'; import { default as trim_module } from './src/function/trim.js'; import { default as trimEnd_module } from './src/function/trimEnd.js'; import { default as unique_module } from './src/function/unique.js'; import { default as trimStart_module } from './src/function/trimStart.js'; import { default as varExtend_module } from './src/function/varExtend.js'; import { default as where_module } from './src/function/where.js'; import { default as whereNot_module } from './src/function/whereNot.js'; import { default as zip_module } from './src/function/zip.js'; import { default as multiply_module } from './src/function/multiply.js';