UNPKG

diginext-utils

Version:
8 lines 276 B
import { isNull, toInt } from "../object.js"; export default function getIntFromNextJsRouter(query) { // if (isNull(query)) return ""; return (Array.isArray(query) ? toInt(query[0]) : toInt(query)) || 0; } //# sourceMappingURL=getIntFromNextJsRouter.js.map