• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1export async function load(url, context, next) {
2  const {
3    format,
4    source,
5  } = await next(url);
6
7  return {
8    format,
9    source: source + 1,
10  };
11}
12