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

avoid process.binding() where possible #5

Merged
merged 5 commits into from
Jan 20, 2020
Merged

Commits on Oct 19, 2019

  1. avoid process.binding() where possible

    process.binding() is deprecated. When running recent versions of Node.js
    with --pending-deprecation, the current code results in a printed
    warning about process.binding() usage. process.binding() is used to
    create writev(), but Node.js now exposes fs.writev(). Use that instead
    when it exists. Otherwise, fall back to the polyfill. This will avoid
    runtime deprecation messages for end users.
    
    If the minimum supported engine is ever Node.js 12.9.0 or above, the
    polyfill code should be removable at that time.
    Trott committed Oct 19, 2019
    Configuration menu
    Copy the full SHA
    ab0c4dc View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2019

  1. Configuration menu
    Copy the full SHA
    0aa7cbd View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2020

  1. Configuration menu
    Copy the full SHA
    6509ae9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    88c3424 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    16b4332 View commit details
    Browse the repository at this point in the history