From b15b3b63373304a3c50a037d9cc1e3c3df878558 Mon Sep 17 00:00:00 2001 From: Dominic Chambers Date: Sun, 28 Sep 2014 21:51:17 +0100 Subject: [PATCH] use the word 'polyfill' instead of 'shim' to be consistent with the main site. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 273af1e..2e08c3a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # IterizerJs -IterizerJs makes it easier to write code that makes extensive use of ES6 iterables. It is not a shim, but merely makes it easier to get the most out of ES6 iterables and generators. It provides: +IterizerJs makes it easier to write code that makes extensive use of ES6 iterables. It is not a polyfill, but merely makes it easier to get the most out of ES6 iterables and generators. It provides: * A `range()` function so you never need to use the classic `for` loop again — `for...of` and `for...in` can be used instead. * Implementations of the ES5 array methods (`map()`, `filter()`, `every()`, `some()`, `reduce()`, `reduceRight()`, `indexOf()` & `lastIndexOf()`) for use with any iterable.