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

util: set super_ property to non-enumerable #23107

Closed
wants to merge 1 commit into from

Commits on Sep 26, 2018

  1. util: set super_ property to non-enumerable

    Using `util.inherits()` adds a `super_` property to the constructor
    and inspecting that constructor is going to show that property even
    though it's not useful for the user.
    
    Therefore the property is now set as non-enumerable and such entries
    are not visible by default when using `console.log()` or
    `util.inspect()`.
    BridgeAR committed Sep 26, 2018
    Configuration menu
    Copy the full SHA
    b39109b View commit details
    Browse the repository at this point in the history