Angular 2 cliプロジェクトにpolyfillのコードを追加するにはどうすればよいですか?Angular 2のポリフィルコードを追加
例えば、私はMozilla MDNから次のポリフィルを使用したい:
if (!Array.prototype.includes) {
Object.defineProperty(Array.prototype, 'includes', {
value: function(searchElement, fromIndex) {
if (this == null) { throw new TypeError('"this" is null or not defined'); }
var o = Object(this);
var len = o.length >>> 0;
if (len === 0) { return false; }
var n = fromIndex | 0;
var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
while (k < len) {
if (o[k] === searchElement) { return true; }
k++;
}
return false;
}
});
}
Iはポリフィルは、NPM(How to add Web Animations API polyfill to an Angular 2 project created with Angular CLI )を介してインストールされている別のスレッドを発見しました。しかし、npmパッケージがない場合はどうすればいいですか?
はあなたのプロジェクトの中核部分ですか? – n00dl3