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