Skip to content

Instantly share code, notes, and snippets.

View sszabolcs's full-sized avatar

Szabolcs Schmidt sszabolcs

  • Hungary
View GitHub Profile
@sszabolcs
sszabolcs / CanJS 3 memory test
Last active March 21, 2017 13:36
Code for investigating CanJS 3 for a possible memory leaking situation
x
@sszabolcs
sszabolcs / can.custom.js
Created April 26, 2017 09:39
CanJS 3 build without can-jquery
/*[global-shim-start]*/
(function(exports, global, doEval){ // jshint ignore:line
var origDefine = global.define;
var get = function(name){
var parts = name.split("."),
cur = global,
i;
for(i = 0 ; i < parts.length; i++){
if(!cur) {
@sszabolcs
sszabolcs / CanJS 3 AMD build scripts
Last active February 11, 2024 22:49
CanJS 3 AMD build
These are the scripts I use to build CanJS 3 in AMD format.