Sha256: 50d867641648aa8bcbd670cb3e5b771c207d8939ee9edee64575ebcf84669d67
Contents?: true
Size: 440 Bytes
Versions: 69
Compression:
Stored size: 440 Bytes
Contents
define(['./filter'], function(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); } return join; });
Version data entries
69 entries across 69 versions & 2 rubygems