Skip to content

Instantly share code, notes, and snippets.

View geoffreydhuyvetters's full-sized avatar

Geoffrey Dhuyvetters geoffreydhuyvetters

View GitHub Profile
@ericelliott
ericelliott / mouse-factory.js
Last active June 9, 2017 04:47
Mouse Factory
let animal = {
animalType: 'animal',
describe () {
return `An ${this.animalType} with ${this.furColor} fur,
${this.legs} legs, and a ${this.tail} tail.`;
}
};
let mouseFactory = function mouseFactory () {
@bendc
bendc / functional-utils.js
Last active September 15, 2023 12:12
A set of pure ES2015 functions aimed to make functional JavaScript more idiomatic.
// array utils
// =================================================================================================
const combine = (...arrays) => [].concat(...arrays);
const compact = arr => arr.filter(Boolean);
const contains = (() => Array.prototype.includes
? (arr, value) => arr.includes(value)
: (arr, value) => arr.some(el => el === value)
@ericelliott
ericelliott / essential-javascript-links.md
Last active March 22, 2025 17:28
Essential JavaScript Links
@bendc
bendc / innerHTMLToDom.js
Last active February 24, 2017 13:24
Create DOM node from innerHTML-like string
const createNode = html =>
new Range().createContextualFragment(html).firstElementChild;
@bendc
bendc / fastSelect.js
Created August 26, 2014 21:57
A fast method to select DOM elements
function fastSelect(selector) {
if (selector == "body") {
return document.body
}
else if (selector == "head") {
return document.head
}
else if (/^[\#.]?[\w-]+$/.test(selector)) {
switch (selector[0]) {
case "#":
@staltz
staltz / introrx.md
Last active April 3, 2025 04:45
The introduction to Reactive Programming you've been missing