blob: 2b8d350c9de3c0d916233e504eabfd5e65b6f11b [file] [log] [blame]
var toSentence = require('./toSentence');
module.exports = function toSentenceSerial(array, sep, lastSep) {
return toSentence(array, sep, lastSep, true);
};