analytics-react-native
Version:
A React Native client for [Segment](https://segment.com) — The hassle-free way to integrate analytics into any application.
13 lines (11 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = uid;
var chars = exports.chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
function uid(length) {
return Array.from(Array(length)).reduce(function (res) {
return res + chars[Math.floor(Math.random() * chars.length)];
}, '');
}