Skip to content

Commit

Permalink
feat: check for compat with Edge 79+, Node 12+
Browse files Browse the repository at this point in the history
These versions have been selected for availability of `TextDecoder`.
(But not whether ESM is supported, since bundlers can take care of that
problem)

Also document support for MS Edge 79+ and Node.js v12+
  • Loading branch information
pastelmind committed Mar 28, 2022
1 parent d907f05 commit ff8f310
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ A lightweight Adobe Photoshop .psd/.psb file parser in typescript with zero-depe

## Browser Support

| Chrome | Firefox | Safari | Internet Explorer |
| :----: | :-----: | :----: | :---------------: |
| 38 | 20 | 10.1 | Not Supported |
| Chrome | Firefox | Safari | Edge | Node |
| :----: | :-----: | :----: | :--: | :--: |
| 38 | 20 | 10.1 | 79 | 12 |

\*Internet Explorer is not supported

## Installation

Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
"browserslist": [
"chrome >= 38",
"firefox >= 20",
"safari >= 10.1"
"safari >= 10.1",
"edge >= 79",
"node >= 12"
],
"devDependencies": {
"@types/jest": "^27.0.3",
Expand Down

0 comments on commit ff8f310

Please sign in to comment.