UNPKG

mobility-toolbox-js

Version:

Toolbox for JavaScript applications in the domains of mobility and logistics.

10 lines (9 loc) 286 B
/** * This function remove duplicates lower case string value of an array. * It removes also null, undefined or non string values. * * @param {array} array Array of values. * @private */ declare function removeDuplicate(array: string[]): string[]; export default removeDuplicate;