Skip to content

Instantly share code, notes, and snippets.

View jakes2255's full-sized avatar
🎖️
Never Quit

Arun Jacob jakes2255

🎖️
Never Quit
View GitHub Profile
@gaearon
gaearon / index.html
Last active January 26, 2024 11:25
Add React in One Minute
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>
@jakes2255
jakes2255 / index.js
Created July 25, 2019 10:32
My Custom NPM package
module.exports = function(string) {
if(typeof string !== "string") throw new TypeError("Plesae enter a string value!");
return string.replace(/\s/g,"");
};