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

Remove deprecated buffer.get / buffer.set methods #4594

Closed
wants to merge 1 commit into from
Closed

Remove deprecated buffer.get / buffer.set methods #4594

wants to merge 1 commit into from

Commits on Jan 8, 2016

  1. Remove deprecated buffer.get / buffer.set methods

    Fixes #4587.
    
    These have been deprecated since Apr 27, 2013, and the plan was to
    remove them in "node v0.13”.
    
    buffer.get(index) is superseded by buffer[index].
    
    buffer.set(index, value) is superseded by buffer[index] = value.
    
    These have never been documented at any point in node's history.
    feross committed Jan 8, 2016
    Configuration menu
    Copy the full SHA
    8c34e3e View commit details
    Browse the repository at this point in the history