WordPress Version: 6.5
/**
* Unmarks the script module so it is no longer enqueued in the page.
*
* @since 6.5.0
*
* @param string $id The identifier of the script module.
*/
function wp_dequeue_script_module(string $id)
{
wp_script_modules()->dequeue($id);
}