Code coverage report for lib/tasks/cssstamp.js

Statements: 100% (5 / 5)      Branches: 100% (4 / 4)      Functions: 100% (1 / 1)      Lines: 100% (5 / 5)     

All files » lib/tasks/ » cssstamp.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16            1 10   10   10   10    
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
 
exports.cssstamp = function (options, blob, done) {
    options = options || {};
 
    options.stamp = options.stamp || '';
 
    var result = blob.result + '\n' + options.stamp + '\n';
 
    done(null, new blob.constructor(result, blob));
};