kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (10 loc) • 310 B
text/typescript
// SPDX-License-Identifier: MIT
// Copyright contributors to the kepler.gl project
/**
* Generate a hash string based on number of character
* @param {number} count
* @returns {string} hash string
*/
export function generateHashId(count = 6): string {
return Math.random().toString(36).substr(count);
}