testing alternative (passthrough) compressor works inline, but not through Sprockets

This commit is contained in:
Thomas Reynolds 2011-12-12 13:54:04 -08:00
parent 911fe031bd
commit f4436eb49e
12 changed files with 94 additions and 3 deletions

View file

@ -0,0 +1,8 @@
var race;
var __slice = Array.prototype.slice;
race = function() {
var runners, winner;
winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
return print(winner, runners);
};