react-code-dataset
/
next.js
/turbopack
/crates
/turbopack-ecmascript
/tests
/analyzer
/graph
/default-args
/input.js
| import { named } from "./module.js"; | |
| function Fun({ value = named }) { | |
| return value; | |
| } | |
| const Fun2 = ({ value2 = named }) => { | |
| return value2; | |
| }; | |