Skip to content

Commit

Permalink
Merge pull request #7 in LFOR/fhirpath.js from bugfix/LF-1422/ie-11-f…
Browse files Browse the repository at this point in the history
…ixes to master

* commit 'b8454b99532d3630263b9195944392f34122aa3f':
  npm audit fix
  Version info updated
  Fixes to work in IE 11
  • Loading branch information
plynchnlm committed Apr 27, 2020
2 parents 69c3f86 + b8454b9 commit 51d4c5f
Show file tree
Hide file tree
Showing 6 changed files with 1,549 additions and 903 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
This log documents significant changes for each release. This project follows
[Semantic Versioning](http://semver.org/).

## [2.1.2] - 2020-04-27
### Changed
- ucum-lhc package updated to 4.1.3
- added polyfills required to run in IE

## [2.1.1] - 2020-04-08
### Changed
- Browser build fixed to work in IE 11
Expand Down
7 changes: 6 additions & 1 deletion browser-build/test/protractor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@
'!Number.isInteger(1.1)',
'!Number.isInteger("1")',
'"Some text".startsWith("Some")',
'!"Some text".startsWith("some")',
'!"Some Text".startsWith("some")',
'"Some text".endsWith("text")',
'!"Some Text".endsWith("text")',
'"Some text again".includes("text")',
'"Some text again".includes("text", 5)',
'!"Some text again".includes("text", 6)',
'Object.assign({}, {a:1}).a === 1',
'Object.assign("123", {a:1}).a === 1',
'Object.assign("123", {a:1})[1] === "2"',
Expand Down
Loading

0 comments on commit 51d4c5f

Please sign in to comment.