UNPKG

mobility-toolbox-js

Version:

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

10 lines (9 loc) 281 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 const removeDuplicate: (array: any[]) => any[]; export default removeDuplicate;