neiker/analytics-react-native

View on GitHub
src/helpers/uid.js

Summary

Maintainability
A
0 mins
Test Coverage
export const chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';

export default function uid(length) {
  return Array.from(Array(length)).reduce(
    res => res + chars[Math.floor((Math.random()) * chars.length)],
    '',
  );
}