dgate 2.1.0

DGate API Gateway - High-performance API gateway with JavaScript module support
Documentation
import { addDefault, addNamed } from '@babel/helper-module-imports'

export function addImport(
  state: any,
  importSource: string,
  importedSpecifier: string,
  nameHint?: string
) {
  let cacheKey = ['import', importSource, importedSpecifier].join(':')
  if (state[cacheKey] === undefined) {
    let importIdentifier
    if (importedSpecifier === 'default') {
      importIdentifier = addDefault(state.file.path, importSource, { nameHint })
    } else {
      importIdentifier = addNamed(
        state.file.path,
        importedSpecifier,
        importSource,
        {
          nameHint
        }
      )
    }
    state[cacheKey] = importIdentifier.name
  }
  return {
    type: 'Identifier',
    name: state[cacheKey]
  }
}