A Pen by Nikolina Spirkovska on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* JavaScript Inheritance | |
* Author: Mutahhir Ali Hayat | |
* Made by joining some parts by John Resig http://ejohn.org/ and some by Ajax.org Code Editor (ACE) | |
*/ | |
define(function(require, exports, module) { | |
var initializing = false, | |
fnTest = /xyz/.test(function() { | |
xyz; | |
}) ? /\b_super\b/: /.*/; |
A Pen by Nikolina Spirkovska on CodePen.