Skip to content

Instantly share code, notes, and snippets.

View TroublesNCuddles's full-sized avatar
🏠
Chilling it with a Red Bull, A Burger and my Keyboard

Liara Gonzalez TroublesNCuddles

🏠
Chilling it with a Red Bull, A Burger and my Keyboard
View GitHub Profile
const isRegularCharacter = char => {
const code = char.charCodeAt(0);
return (code > 64 && code < 91) || (code > 96 && code < 123);
};
const mock = (str) => {
let count = 0;
return str
const isRegularCharacter = char => {
const code = char.charCodeAt(0);
return (code > 64 && code < 91) || (code > 96 && code < 123);
};
const mock = (str) => {
let count = 0;
return str.split("")