* View the current character. Returns '' if end of expression is reached. * * @param {Object} state * @returns {string} * @private
(state)
| 252 | * @private |
| 253 | */ |
| 254 | function currentCharacter (state) { |
| 255 | return currentString(state, 1) |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Get the next character from the expression. |
no test coverage detected
searching dependent graphs…