feat(backend): Added curatedSets data type
This commit is contained in:
parent
19a81a0aed
commit
e4f2aab9d0
15 changed files with 1006 additions and 48 deletions
|
@ -1,5 +1,10 @@
|
|||
import { website } from '../config.mjs'
|
||||
|
||||
/*
|
||||
* Capitalizes a string
|
||||
*/
|
||||
export const capitalize = (string) => string.charAt(0).toUpperCase() + string.slice(1)
|
||||
|
||||
/*
|
||||
* Cleans a string (typically email) for hashing
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue