UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

10 lines 543 B
/** * Removes trailing undefined elements from an array. Also removes trailing objects that are empty or only keys with * undefined values are present. */ export declare function removeTrailingUndefinedElements(params: unknown[]): unknown[]; /** * Returns true if an item exists in one array that does not exist in another, using deep comparison by default. */ export declare function hasDifference(x: Array<unknown>, y: Array<unknown>, comparator?: (value: any, other: any) => boolean): boolean; //# sourceMappingURL=ArrayUtils.d.ts.map