| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 1 8 8 | /*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var yuglify = require('yuglify');
exports.cssmin = function (options, blob, done) {
yuglify.cssmin(blob.result, function(err, smashed) {
done(null, new blob.constructor(smashed, blob));
});
};
|