Arno Kaimbacher
87e9314b00
Some checks failed
CI Pipeline / japa-tests (push) Failing after 51s
- added lime color inside tailwind.config.js - added some utilities scripts needed for components - npm updates - changed postcss.config.js for nesting css styles - added about function to NavBar.vue
8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
const GenRandomId = (length) => {
|
|
return Math.random()
|
|
.toString(36)
|
|
.replace(/[^a-z]+/g, '')
|
|
.slice(0, length || 5)
|
|
}
|
|
|
|
export default GenRandomId |