Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: hasOwnProperty #9362

Merged
merged 5 commits into from
Nov 12, 2023
Merged

fix: hasOwnProperty #9362

merged 5 commits into from
Nov 12, 2023

Commits on Nov 4, 2023

  1. fix: hasOwnProperty

    The current implementation makes a direct use of hasOwnProperty which misbehaves when a module exports a method named `hasOwnProperty` [see issue 9350](#9350).
    
    This commit implements a [safer way to call hasOwnProperty](https://stackoverflow.com/questions/12017693/why-use-object-prototype-hasownproperty-callmyobj-prop-instead-of-myobj-hasow/12017703#12017703).
    gagdiez authored Nov 4, 2023
    Configuration menu
    Copy the full SHA
    a684430 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. Fix for scope-hoisting

    mischnic committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    c3bd2a2 View commit details
    Browse the repository at this point in the history
  2. Add test

    mischnic committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    59bf249 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'v2' into 9362

    mischnic committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    2c5e750 View commit details
    Browse the repository at this point in the history
  4. Lint

    mischnic committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    cefec13 View commit details
    Browse the repository at this point in the history