Code coverage report for dist\demo-qunit.js

Statements: 100% (5 / 5)      Branches: 100% (2 / 2)      Functions: 100% (2 / 2)      Lines: 100% (5 / 5)      Ignored: none     

All files » dist/ » demo-qunit.js
1 2 3 4 5 6 7 8 9 10 11 12 13        1 1 3 1   2      
/**
 * @file demo-qunit
 * @version 0.0.1
 */
(function($) {
  $.demoQunit = function(arg) {
    if (arg > 10) {
      return true;
    } else {
      return false;
    }
  };
})(jQuery);