This repository was archived by the owner on Jul 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +54
-6
lines changed Expand file tree Collapse file tree 7 files changed +54
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import './fetch.ts'
1
+ import nameShim from 'https://esm.sh/function.prototype.name/shim'
2
+
3
+ import '../es2016/mod.ts'
4
+
5
+ nameShim ( )
Original file line number Diff line number Diff line change
1
+ // Array#includes is stage 4, in ES7/ES2016
2
+ import includesShim from 'https://esm.sh/array-includes/shim'
3
+
4
+ import '../es2017/mod.ts'
5
+
6
+ includesShim ( )
7
+
8
+
Original file line number Diff line number Diff line change
1
+ // Object.values/Object.entries are stage 4, in ES2017
2
+ import valuesShim from 'https://esm.sh/object.values/shim'
3
+ import entriesShim from 'https://esm.sh/object.entries/shim'
4
+
5
+ // String#padStart/String#padEnd are stage 4, in ES2017
6
+ import padstartShim from 'https://esm.sh/string.prototype.padstart/shim'
7
+ import padendShim from 'https://esm.sh/string.prototype.padend/shim'
8
+
9
+ // Object.getOwnPropertyDescriptors is stage 4, in ES2017
10
+ import getownpropertydescriptorsShim from 'https://esm.sh/object.getownpropertydescriptors/shim'
11
+
12
+ import '../es2018/mod.ts'
13
+
14
+ valuesShim ( )
15
+ entriesShim ( )
16
+ padstartShim ( )
17
+ padendShim ( )
18
+ getownpropertydescriptorsShim ( )
Original file line number Diff line number Diff line change
1
+ import finallyShim from 'https://esm.sh/promise.prototype.finally/shim'
2
+ import '../es2019/mod.ts'
3
+
4
+ if ( typeof Promise === 'function' ) {
5
+ finallyShim ( )
6
+ }
Original file line number Diff line number Diff line change
1
+ import flatShim from 'https://esm.sh/array.prototype.flat/shim'
2
+ import flatmapShim from 'https://esm.sh/array.prototype.flatmap/shim'
3
+ import descriptionShim from 'https://esm.sh/symbol.prototype.description/shim'
4
+ import fromentriesShim from 'https://esm.sh/object.fromentries/shim'
5
+ import '../es2020/mod.ts'
6
+
7
+ flatShim ( )
8
+ flatmapShim ( )
9
+ descriptionShim ( )
10
+ fromentriesShim ( )
Original file line number Diff line number Diff line change
1
+ import matchallShim from 'https://esm.sh/string.prototype.matchall/shim'
2
+ import globalthisShim from 'https://esm.sh/globalthis/shim'
3
+ import allsettledShim from 'https://esm.sh/promise.allsettled/shim'
4
+
5
+ matchallShim ( )
6
+ globalthisShim ( )
7
+ allsettledShim ( )
You can’t perform that action at this time.
0 commit comments