I am used to this TypeScript import statement, which imports the "Component" class from the "angular/core" module:
import {Component} from '@angular/core';
But I have also seen other import statements such as this:
import 'core-js/es6/symbol';
What does the second one do, exactly?