(key)
| 3484 | // for lexical sorting, e.g. within a database, where the |
| 3485 | // sorting is the same given by the collate() function. |
| 3486 | function toIndexableString(key) { |
| 3487 | var zero = '\u0000'; |
| 3488 | key = normalizeKey(key); |
| 3489 | return collationIndex(key) + SEP + indexify(key) + zero; |
| 3490 | } |
| 3491 | |
| 3492 | function parseNumber(str, i) { |
| 3493 | var originalIdx = i; |
no test coverage detected
searching dependent graphs…