File size: 183 Bytes
1e92f2d
 
 
 
 
 
1
2
3
4
5
6
7
import { load as loadInternal } from 'transitive-external'

export async function load(name) {
  let value = await loadInternal('./' + name + '.mjs')
  return `transitive ${value}`
}