* View upto `length` characters of the expression starting at the current character. * * @param {Object} state * @param {number} [length=1] Number of characters to view * @returns {string} * @private
(state, length)
| 241 | * @private |
| 242 | */ |
| 243 | function currentString (state, length) { |
| 244 | return state.expression.substr(state.index, length) |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * View the current character. Returns '' if end of expression is reached. |
no outgoing calls
no test coverage detected
searching dependent graphs…