/* * Copyright (c) 2023, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #include "IntegerStyleValue.h" namespace Web::CSS { String IntegerStyleValue::to_string() const { return MUST(String::number(m_value)); } }