Dynamic Imports (import())

What bundler feature is being utilized with the webpackChunkName comment?
// Webpack or similar bundler environment
import(/* webpackChunkName: "editor" */ './editor/index.js')
  .then(module => {
    const editor = new module.Editor();
    editor.initialize();
  });
Next Question (6/43)