bootstrap-detect-breakpoint

Current breakpoint:

const $output = $("#breakpoint-output")

function updateView() {
    const currentBreakpoint = bootstrapDetectBreakpoint()
    $output.html("" + JSON.stringify(currentBreakpoint) + "")
}

updateView()
$(window).on("resize", updateView)