UNPKG

diginext-utils

Version:
8 lines (7 loc) 230 B
import { isNull, toInt } from "../object"; export default function getIntFromNextJsRouter(query) { // if (isNull(query)) return ""; return (Array.isArray(query) ? toInt(query[0]) : toInt(query)) || 0; }