anorgatarrak-wordpress-theme/node_modules/underscore.string/toSentenceSerial.js

6 lines
160 B
JavaScript
Raw Permalink Normal View History

var toSentence = require('./toSentence');
module.exports = function toSentenceSerial(array, sep, lastSep) {
return toSentence(array, sep, lastSep, true);
};