UNPKG

917 BTypeScriptView Raw
1/**
2 * @ignore
3 * Determines whether between is
4 * @param value
5 * @param start
6 * @param end
7 * @returns true if between
8 */
9export declare function isBetween(value: number, start: number, end: number): boolean;
10/**
11 * @ignore
12 * pads the current string/array with a given value (repeated, if needed) so that the resulting reaches a given length.
13 * The padding is applied from the end of the current value.
14 *
15 * @param source
16 * @param targetLength
17 * @param padValue
18 * @returns
19 */
20export declare function padEnd(source: string | any[], targetLength: number, padValue: any): string | any[];
21/**
22 * @ignore
23 * omit keys of an object.
24 * @param obj
25 * @param keys
26 */
27export declare function omit<T = any>(obj: T, keys: string[]): T;
28/**
29 * @ignore
30 * @param sourceArray
31 * @param targetArray
32 * @param map
33 */
34export declare function uniq(sourceArray: any[], targetArray?: any[], map?: Map<any, boolean>): any[];