(a)
| 1187 | } |
| 1188 | |
| 1189 | var _removeEmpty = function (a) { |
| 1190 | var out = [] |
| 1191 | |
| 1192 | for (var i = 0, ien = a.length; i < ien; i++) { |
| 1193 | if (a[i]) { |
| 1194 | // careful - will remove all falsy values! |
| 1195 | out.push(a[i]) |
| 1196 | } |
| 1197 | } |
| 1198 | |
| 1199 | return out |
| 1200 | } |
| 1201 | |
| 1202 | // Replaceable function in api.util |
| 1203 | var _stripHtml = function (input) { |
no outgoing calls
no test coverage detected