Skip to content

Instantly share code, notes, and snippets.

@jeffschwartz
Created September 29, 2013 20:54
Show Gist options
  • Save jeffschwartz/6756446 to your computer and use it in GitHub Desktop.
Save jeffschwartz/6756446 to your computer and use it in GitHub Desktop.
Shim RequireJS define method allowing CoccyxJS to be used without RequireJS
(function(){
'use strict';
window.define = function define(){
(arguments[arguments.length - 1])();
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment