"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var shortid = require("./shortid");
var cuid = require("./cuid");
exports.id = {
shortid: function () {
return shortid.generate();
},
cuid: function () {
return cuid.generate();
},
};