UNPKG

preval

Version:

Wannabe compiler tool for JS

21 lines (15 loc) 261 B
# Preval test case # copy.md > constants > copy > > Copy one constant into another. Should fold them. ## Input `````js filename=intro const foo = "five"; const bar = foo; ````` ## Output `````js filename=intro const foo = "five"; const bar = "five"; `````