Version 1
[yaffs-website] / node_modules / underscore.string / toSentenceSerial.js
1 var toSentence = require('./toSentence');
2
3 module.exports = function toSentenceSerial(array, sep, lastSep) {
4   return toSentence(array, sep, lastSep, true);
5 };