covid
Jul 13, 2023, 6:21 PM data analysis
Challenge
Uh, well, I gotta go. Precisely. Mayor Goldie Wilson, I like the sound of that. Okay, real mature guys. Okay, Biff, will you pick up my books? Actually, people call me Marty.whoa, this is it, this is the part coming up, Doc. The keys are in the trunk. Right. Lou, gimme a milk, chocolate. Lorraine, my density has popped me to you. Lorraine, are you up there? You're gonna be in the car with her.Hey, McFly, I thought I told you never to come in here. Well it's gonna cost you. How much money you got on you? Marty. Marty. Marty. George, there's nothing to be scared of. All it takes is a little self confidence. You know, if you put your mind to it, you could accomplish anything. Ah. Whoa. What's the meaning of this
project
Table of Contents
Heading 1
lorem ipsum
const slugify = (name: string, options?: { lower?: boolean; trim?: boolean }) => {
let newSt = '';
if (options!.lower!) {
newSt = name.toLowerCase();
}
if (options!.trim!) {
newSt = name.trim();
}
newSt = name.replace(/s/gi, `-`);
newSt = newSt.replace(/[^a-zA-Z0-9-]/gi, '');
return newSt;
}