Skip to content

Commit

Permalink
Included the polyfill for String.includes (#325)
Browse files Browse the repository at this point in the history
This fixes a problem with browser-tabs-lock sometimes failing because
".includes" is not a valid method in IE11.
  • Loading branch information
Steve Hobbs committed Jan 7, 2020
1 parent 8ceb626 commit 288e13c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'core-js/es/string/starts-with';
import 'core-js/es/array/from';
import 'core-js/es/typed-array/slice';
import 'core-js/es/array/includes';
import 'core-js/es/string/includes';
import 'promise-polyfill/src/polyfill';
import 'fast-text-encoding';

Expand Down

0 comments on commit 288e13c

Please sign in to comment.