@graphteon/juricode
Version:
We are forging the future with lines of digital steel
10 lines • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getRandomKey = void 0;
const getRandomKey = (obj) => {
const keys = Object.keys(obj);
const randomKey = keys[Math.floor(Math.random() * keys.length)];
return randomKey;
};
exports.getRandomKey = getRandomKey;
//# sourceMappingURL=get-random-key.js.map