forked from LeenkxTeam/Kmake
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
|
|
import { writeSync } from 'node:fs';
|
||
|
|
|
||
|
|
|
||
|
|
export async function load(url, context, next) {
|
||
|
|
writeSync(1, context.foo + '\n'); // Expose actual value the hook was called with
|
||
|
|
return next(url, context);
|
||
|
|
}
|