Sign in
chromium
/
devtools
/
devtools-frontend
/
40fcb9a9aae81ac1df2c19dee467ab3a4cf4088b
/
.
/
node_modules
/
recast
/
example
/
identity
blob: 62981b8f68226c47bb309c9b1d2bf4f6f54a8326 [
file
] [
log
] [
blame
]
#!/usr/bin/env node
// This script should echo the contents of the given file without
// modification.
require
(
"recast"
).
run
(
function
(
ast
,
callback
)
{
callback
(
ast
);
});