denoland / deno_ast

Source text parsing, lexing, and AST related functionality for Deno
https://crates.io/crates/deno_ast
MIT License
146 stars 45 forks source link

feat: serialize numeric jsx attribute values #172

Closed marvinhagemeister closed 10 months ago

marvinhagemeister commented 10 months ago

When we encounter a numeric JSX attribute value <img width={100} />, we can serialize it ourselves rather than going through jsxattr(). This is a minor perf optimization.