From e7ea9d7bab0a909c11261ea2c93138095f08d77e Mon Sep 17 00:00:00 2001 From: h3n4l Date: Sun, 8 Sep 2024 16:31:05 +0800 Subject: [PATCH] fix: one polyfill library instead of two polyfill libraries --- 1-js/03-code-quality/06-polyfills/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/06-polyfills/article.md b/1-js/03-code-quality/06-polyfills/article.md index 19404b7b5f..32df83f459 100644 --- a/1-js/03-code-quality/06-polyfills/article.md +++ b/1-js/03-code-quality/06-polyfills/article.md @@ -71,7 +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: +One interesting polyfill library is: - [core js](https://github.com/zloirock/core-js) that supports a lot, allows to include only needed features.