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