Skip to content

Instantly share code, notes, and snippets.

@Pampattitude
Pampattitude / Class.js
Created November 24, 2015 11:01 — forked from shakyShane/Class.js
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 () {