Sha256: 41a689e1a67d568230a28d1da02d0479fec9cc80ba7280bc8d3a8e4fbe77c47a
Contents?: true
Size: 441 Bytes
Versions: 69
Compression:
Stored size: 441 Bytes
Contents
var filter = require('./filter'); function isValidString(val) { return (val != null && val !== ''); } /** * Joins strings with the specified separator inserted between each value. * Null values and empty strings will be excluded. */ function join(items, separator) { separator = separator || ''; return filter(items, isValidString).join(separator); } module.exports = join;
Version data entries
69 entries across 69 versions & 2 rubygems