UNPKG

diginext-utils

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