27 lines
530 B
React
27 lines
530 B
React
|
|
export const API_URL = 'http://localhost:3001';
|
||
|
|
|
||
|
|
export const slugify = (text) => {
|
||
|
|
if (!text) {
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
|
||
|
|
return text
|
||
|
|
.toString()
|
||
|
|
.toLowerCase()
|
||
|
|
.trim()
|
||
|
|
.replace(/\s+/g, '-')
|
||
|
|
.replace(/[^\w\-]+/g, '')
|
||
|
|
.replace(/\-\-+/g, '-');
|
||
|
|
};
|
||
|
|
|
||
|
|
export const unSlugify = (text) => {
|
||
|
|
if (!text) {
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
|
||
|
|
return text
|
||
|
|
.toString()
|
||
|
|
.toLowerCase()
|
||
|
|
.replace(/-/g, ' ')
|
||
|
|
.replace(/\b\w/g, (char) => char.toUpperCase());
|
||
|
|
};
|