Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
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
);
});