Code coverage report for nodash/lib/fractional.js

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

All files » nodash/lib/ » fractional.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15      1     2       2        
/* vim: set et sw=2 ts=2: */
'use strict';
 
module.exports = {
 
  '/ frac': function (a, b) {
    return a / b;
  },
 
  recip: function (x) {
    return 1 / x;
  }
  
};