Code coverage report for lib/Example.js

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

All files » lib/ » Example.js
1 2 3 4 5 6 7 8 9 10 11 12 13 141 1       1   1       1    
define([], function() {
    var exports = function() {
 
    };
 
    exports.prototype = {
      add: function(valueA, valueB) {
        return valueA + valueB;
      }
    };
 
    return exports;
});