(string)
| 575 | } |
| 576 | |
| 577 | function stringToInteger(string) { |
| 578 | var total = 0; |
| 579 | for (var i = 0; i !== string.length; i++) { |
| 580 | if (total >= Number.MAX_SAFE_INTEGER) break; |
| 581 | total += string.charCodeAt(i); |
| 582 | } |
| 583 | return total; |
| 584 | } |
| 585 | |
| 586 | // get The range of given hue when options.count!=0 |
| 587 | function getRealHueRange(colorHue) { |
no outgoing calls
no test coverage detected
searching dependent graphs…