the browser-facing portion of osu!
at master 6 lines 254 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 2// See the LICENCE file in the repository root for full licence text. 3 4export function fail(message: string): never { 5 throw new Error(message); 6}