Skip to content

Instantly share code, notes, and snippets.

@shakyShane
shakyShane / Class.js
Created July 7, 2013 17:09
Javascript class-like inheritance
/* Simple JavaScript Inheritance for ES 5.1 ( includes polyfill for IE < 9 )
* based on http://ejohn.org/blog/simple-javascript-inheritance/
* (inspired by base2 and Prototype)
* MIT Licensed.
*/
(function (global) {
"use strict";
if (!Object.create) {
Object.create = (function () {