(string)
| 88 | } |
| 89 | |
| 90 | function capitalizeFirstLetter(string) { |
| 91 | return string.charAt(0).toUpperCase() + string.slice(1); |
| 92 | } |
| 93 | |
| 94 | //Based on underscore.js |
| 95 | function throttle(func) { |
no outgoing calls
no test coverage detected
searching dependent graphs…