Files

9 lines
176 B
Plaintext
Raw Permalink Normal View History

2026-03-22 03:21:45 +02:00
#!/usr/bin/env node
// This script should echo the contents of the given file without
// modification.
require("recast").run(function(ast, callback) {
callback(ast);
});