// SPDX-License-Identifier: Apache-2.0 /** * Strip debug assertions from a piece of code. * * @param code The code to strip debug assertions from. * @return The stripped code. */ export function stripAssertions(code: string): string;