From 452db68df36bed5ca753cfff65fa5a333ea1ad0a Mon Sep 17 00:00:00 2001 From: Hasan Nahiyan Nobel <43447022+HasanNahiyanNobel@users.noreply.github.com> Date: Thu, 28 Nov 2024 00:33:17 +0600 Subject: [PATCH] Improved phrasing and clarity of the number of polyfill libraries. --- 1-js/03-code-quality/06-polyfills/article.md | 3 +-- 1 file changed, 1 insertion(+), 2 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..5075b08548 100644 --- a/1-js/03-code-quality/06-polyfills/article.md +++ b/1-js/03-code-quality/06-polyfills/article.md @@ -71,8 +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. +An interesting polyfill library is [core-js](https://github.com/zloirock/core-js). It provides extensive support and allows for adding only the needed features. ## Summary