hypertune
Version:
[Hypertune](https://www.hypertune.com/) is the most flexible platform for feature flags, A/B testing, analytics and app configuration. Built with full end-to-end type-safety, Git-style version control and local, synchronous, in-memory flag evaluation. Opt
10 lines • 402 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = uniqueId;
const nanoid_1 = require("nanoid");
const non_secure_1 = require("nanoid/non-secure");
const environment_1 = require("../../lib/environment");
function uniqueId() {
return environment_1.isReactNative ? (0, non_secure_1.nanoid)() : (0, nanoid_1.nanoid)();
}
//# sourceMappingURL=uniqueId.js.map