mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 04:09:12 +00:00
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
const ksuid = require('ksuid');
|
|
|
|
module.exports = {
|
|
ksuid(field = 'id') {
|
|
return async function() {
|
|
this.id = await ksuid.random();
|
|
return this;
|
|
};
|
|
},
|
|
};
|