diff-match-patch icon indicating copy to clipboard operation
diff-match-patch copied to clipboard

Fix lineHash.hasOwnProperty might be contaminated

Open jackycute opened this issue 5 years ago • 3 comments

if calling method like dmp.diff_linesToChars_('hasOwnProperty', ' ') will throw TypeError: lineHash.hasOwnProperty is not a function since the lineHash is a instance of Object, the method can be overwritten while walking through the text lines.

To avoid this, we can use Object.prototype.hasOwnProperty.call(lineHash, line) that make it always can call hasOwnProperty properly.

See more at: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty

jackycute avatar Jun 24 '20 07:06 jackycute

Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

:memo: Please visit https://cla.developers.google.com/ to sign.

Once you've signed (or fixed any issues), please reply here with @googlebot I signed it! and we'll verify it.


What to do if you already signed the CLA

Individual signers
Corporate signers

ℹ️ Googlers: Go here for more info.

googlebot avatar Jun 24 '20 07:06 googlebot

@googlebot I signed it!

jackycute avatar Jun 24 '20 07:06 jackycute

CLAs look good, thanks!

ℹ️ Googlers: Go here for more info.

googlebot avatar Jun 24 '20 07:06 googlebot