1 | export declare const toString: () => string;
|
2 | export declare const hasOwnProperty: (v: PropertyKey) => boolean;
|
3 | export declare function isString(value: any): value is string;
|
4 | export declare function isFunction(value: any): value is Function;
|
5 | export declare function isPromise<T>(val: any): val is Promise<T>;
|
6 | export declare function isIterator(val: any): val is IterableIterator<any>;
|
7 | export declare function escapeRegex(str: string): string;
|
8 | export declare function promisify<T1, T2>(fn: (arg1: T1, cb: (err: Error | null, result: T2) => void) => void): (arg1: T1) => Promise<T2>;
|
9 | export declare function promisify<T1, T2, T3>(fn: (arg1: T1, arg2: T2, cb: (err: Error | null, result: T3) => void) => void): (arg1: T1, arg2: T2) => Promise<T3>;
|
10 | export declare function stringify(value: any): string;
|
11 | export declare function toEnumerable<T = unknown>(val: any): T[];
|
12 | export declare function toArray(val: any): any[];
|
13 | export declare function toValue(value: any): any;
|
14 | export declare function toNumber(value: any): number;
|
15 | export declare function isNumber(value: any): value is number;
|
16 | export declare function toLiquid(value: any): any;
|
17 | export declare function isNil(value: any): boolean;
|
18 | export declare function isUndefined(value: any): boolean;
|
19 | export declare function isArray(value: any): value is any[];
|
20 | export declare function isIterable(value: any): value is Iterable<any>;
|
21 | export declare function forOwn<T>(obj: Record<string, T> | undefined, iteratee: ((val: T, key: string, obj: {
|
22 | [key: string]: T;
|
23 | }) => boolean | void)): Record<string, T>;
|
24 | export declare function last<T>(arr: T[]): T;
|
25 | export declare function last(arr: string): string;
|
26 | export declare function isObject(value: any): value is object;
|
27 | export declare function range(start: number, stop: number, step?: number): number[];
|
28 | export declare function padStart(str: any, length: number, ch?: string): any;
|
29 | export declare function padEnd(str: any, length: number, ch?: string): any;
|
30 | export declare function pad(str: any, length: number, ch: string, add: (str: string, ch: string) => string): any;
|
31 | export declare function identify<T>(val: T): T;
|
32 | export declare function changeCase(str: string): string;
|
33 | export declare function ellipsis(str: string, N: number): string;
|
34 | export declare function caseInsensitiveCompare(a: any, b: any): 0 | 1 | -1;
|
35 | export declare function argumentsToValue<F extends (...args: any) => any, T>(fn: F): (this: T, ...args: Parameters<F>) => any;
|
36 | export declare function escapeRegExp(text: string): string;
|