Code coverage report for master/toSentenceSerial.js

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

All files » master/ » toSentenceSerial.js
1 2 3 4 5 61   1 3    
var toSentence = require('./toSentence');
 
module.exports = function toSentenceSerial(array, sep, lastSep) {
  return toSentence(array, sep, lastSep, true);
};