Rename function to avoid minification failure

This commit is contained in:
Tim Schaub
2021-09-07 14:07:58 -06:00
parent 1f3e3efe5d
commit c0546c5f07
5 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ export function readDecimalString(string) {
* @param {Node} node Node.
* @return {number|undefined} Non negative integer.
*/
export function readNonNegativeInteger(node) {
export function readPositiveInteger(node) {
const s = getAllTextContent(node, false);
return readNonNegativeIntegerString(s);
}