%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/words.js |
var isBlank = require('./isBlank');
var trim = require('./trim');
module.exports = function words(str, delimiter) {
if (isBlank(str)) return [];
return trim(str, delimiter).split(delimiter || /\s+/);
};