From c81823912b5d0bdfc0c3b61634b76e193c138522 Mon Sep 17 00:00:00 2001 From: Daniel La Rocque Date: Thu, 19 Sep 2024 17:02:18 -0400 Subject: [PATCH] Convert list of polyfills into a sentence polyfills.io was removed a few months ago and now only core-js is listed, so this should be converted from a list to a single sentence. --- 1-js/03-code-quality/06-polyfills/article.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/1-js/03-code-quality/06-polyfills/article.md b/1-js/03-code-quality/06-polyfills/article.md index 19404b7b5f..e45f9e84cd 100644 --- a/1-js/03-code-quality/06-polyfills/article.md +++ b/1-js/03-code-quality/06-polyfills/article.md @@ -71,9 +71,7 @@ if (!Math.trunc) { // if no such function JavaScript is a highly dynamic language. Scripts may add/modify any function, even built-in ones. -Two interesting polyfill libraries are: -- [core js](https://github.com/zloirock/core-js) that supports a lot, allows to include only needed features. - +A popular polyfill library is [core js](https://github.com/zloirock/core-js), which supports a wide range of features and allows selective inclusion of only what you need. ## Summary