Skip to content

Instantly share code, notes, and snippets.

@colbycheeze
colbycheeze / package.json
Last active April 15, 2017 13:59
A configurable webpack 2 config used in a large production app
{
"name": "medspoke-redux",
"description": "A React frontend for the MedSpoke application",
"version": "0.1.0",
"author": "MedSpoke, Inc.",
"license": "GPL-3.0",
"main": "index.js",
"engines": {
"node": ">=6.9.2",
"yarn": "^0.19.1"
@telekosmos
telekosmos / uniq.js
Last active November 15, 2022 17:13
Remove duplicates from js array (ES5/ES6)
var uniqueArray = function(arrArg) {
return arrArg.filter(function(elem, pos,arr) {
return arr.indexOf(elem) == pos;
});
};
var uniqEs6 = (arrArg) => {
return arrArg.filter((elem, pos, arr) => {
return arr.indexOf(elem) == pos;
});
@domwashburn
domwashburn / SassMeister-input-HTML.html
Last active August 29, 2015 14:16
Generated by SassMeister.com.
<h2>Small Buttons</h2>
<a href="#" class="btn--default--sm">default</a>
<a href="#" class="btn--primary--sm">primary</a>
<a href="#" class="btn--success--sm">success</a>
<a href="#" class="btn--info--sm">info</a>
<a href="#" class="btn--warn--sm">warn</a>
<a href="#" class="btn--danger--sm">danger</a>
<h2>Medium Buttons</h2>