1import { writeSync } from 'node:fs';
2
3
4export async function load(url, context, next) {
5  writeSync(1, context.foo + '\n'); // Expose actual value the hook was called with
6  return next(url, context);
7}
8