(code, string, value = 1)
| 192 | } |
| 193 | |
| 194 | function extract(code, string, value = 1) |
| 195 | { |
| 196 | string = string.match(code); |
| 197 | return (string !== null && typeof string[value] != 'undefined') ? string[value] : ''; |
| 198 | } |
| 199 | |
| 200 | function capitalize(s) |
| 201 | { |
no outgoing calls
no test coverage detected