Add the "Type Assertion" node catalog category (#4452)

This commit is contained in:
Keavon Chambers
2026-08-17 23:39:02 -07:00
committed by GitHub
parent 656daa26bc
commit 2df0bd25c3
3 changed files with 5 additions and 5 deletions

View File

@@ -189,7 +189,7 @@ fn string_value(_: impl Ctx, _primary: (), string: Item<TextArea>) -> Item<Strin
}
/// Type-asserts a value to be a string.
#[node_macro::node(category("Debug"))]
#[node_macro::node(category("Type Assertion"))]
fn as_string(_: impl Ctx, value: Item<String>) -> Item<String> {
value
}