Update render script and Makefile

This commit is contained in:
Jonas Zeunert
2024-04-22 21:54:39 +02:00
parent 2d63fe63cd
commit 4d0cd768f7
10975 changed files with 47095 additions and 4031084 deletions

View File

@@ -47,15 +47,18 @@
Strings
- indexof (https://github.com/component/indexof) - String.prototype.indexOf (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf)
- string.prototype.trim (https://github.com/es-shims/String.prototype.trim) - String.prototype.trim (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim)
- string.prototype.trim (https://github.com/es-shims/String.prototype.trim) - String.prototype.trim 
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim)
- string.prototype.trimleft (https://github.com/es-shims/String.prototype.trimleft) - String.prototype.trimStart 
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimStart)
- string.prototype.trimright (https://github.com/es-shims/String.prototype.trimright) - String.prototype.trimEnd (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimEnd)
- string.prototype.trimright (https://github.com/es-shims/String.prototype.trimright) - String.prototype.trimEnd 
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimEnd)
- string.prototype.replaceall (https://github.com/es-shims/String.prototype.replaceAll) - String.prototype.replaceAll (https://github.com/tc39/proposal-string-replaceall)
Objects
- object.fromentries (https://github.com/es-shims/Object.fromEntries) - Object.fromEntries (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/fromEntries)
- object.fromentries (https://github.com/es-shims/Object.fromEntries) - Object.fromEntries 
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/fromEntries)
- object.entries (https://github.com/es-shims/Object.entries) - Object.entries (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries)
- object-keys (https://github.com/ljharb/object-keys) - Object.keys (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys)
- object.values (https://github.com/es-shims/Object.values) - Object.values (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values)
@@ -66,10 +69,12 @@
Arrays
- array-from (https://github.com/studio-b12/array-from) - Array.from (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from)
- array.prototype.every (https://github.com/es-shims/Array.prototype.every) - Array.prototype.every (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every)
- array.prototype.every (https://github.com/es-shims/Array.prototype.every) - Array.prototype.every 
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every)
- array.prototype.find (https://github.com/paulmillr/Array.prototype.find) - Array.prototype.find (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find)
- array.prototype.some (https://github.com/es-shims/Array.prototype.some) - Array.prototype.some (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some)
- array.prototype.flatmap (https://github.com/es-shims/Array.prototype.flatMap) - Array.prototype.flatMap (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap)
- array.prototype.flatmap (https://github.com/es-shims/Array.prototype.flatMap) - Array.prototype.flatMap 
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap)
- array-map (https://github.com/substack/array-map) - Array.prototype.map (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map)
- array-foreach (https://github.com/twada/array-foreach) - Array.prototype.forEach (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach)
- array-includes (https://github.com/es-shims/array-includes) - Array.prototype.includes (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes)