Sha256: e3f27311521fcbb86ef5db3336d91e5a5f6d80aa0edef48d7207833b73190414
Contents?: true
Size: 349 Bytes
Versions: 174
Compression:
Stored size: 349 Bytes
Contents
/** * @ngdoc filter * @name Bastion.components.formatters.filter:arrayToString * * @description * * * @example * */ angular.module('Bastion.components.formatters').filter('arrayToString', [function () { return function (toFormat, separator) { separator = separator || ', '; return toFormat.join(separator); }; }]);
Version data entries
174 entries across 174 versions & 2 rubygems