create.js 172 B

12345678
  1. import Core from './core'
  2. /**
  3. * Factory function for creating a new
  4. * instance of the core.
  5. * @returns { object } new Core instance
  6. */
  7. export default () => new Core()