actually export the function

This commit is contained in:
Sami Samhuri 2010-11-14 19:16:23 -08:00
parent abc8331a9c
commit e39c67f753

View file

@ -76,6 +76,8 @@ var strftime = (function() {
}
});
}
return strftime;
}());
if (typeof exports !== 'undefined') exports.strftime = strftime;
else (function(global) { global.strftime = strftime }.call(this));