(str)
| 270 | } |
| 271 | |
| 272 | function ucfirst (str) { |
| 273 | return str && str.length ? str.charAt(0).toUpperCase() + str.substring(1) : str; |
| 274 | } |
| 275 | |
| 276 | function escapeRegExp (string) { |
| 277 | return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); |
no outgoing calls
no test coverage detected