Skip to content

Instantly share code, notes, and snippets.

View existenzial's full-sized avatar
📦
npm pack #me

Jazz Lyles existenzial

📦
npm pack #me
View GitHub Profile
@existenzial
existenzial / debounce.js
Last active March 6, 2019 17:43
Debouncing Function - ES2015
/**
* debounce
* @type {Function}
*
* @param {Function} cb
* @param {Number} wait
* @param {Boolean} immediate
*
* @return {Function} debounced function
*/
@existenzial
existenzial / base.css
Last active August 24, 2019 20:16
CSS Variables - a playground (JSBin - https://jsbin.com/kiguwoq)
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;