Skip to content

Commit

Permalink
doc: link and highlight Object.assign
Browse files Browse the repository at this point in the history
PR-URL: #7670
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
thefourtheye authored and evanlucas committed Jul 15, 2016
1 parent a82573d commit 58b70d3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -651,13 +651,13 @@ Deprecated predecessor of `console.log`.

### util._extend(obj)

Stability: 0 - Deprecated: Use Object.assign() instead.
Stability: 0 - Deprecated: Use [`Object.assign()`] instead.

The `util._extend()` method was never intended to be used outside of internal
Node.js modules. The community found and used it anyway.

It is deprecated and should not be used in new code. JavaScript comes with very
similar built-in functionality through `Object.assign()`.
similar built-in functionality through [`Object.assign()`].

[`Array.isArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
[constructor]: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/constructor
Expand All @@ -668,3 +668,4 @@ similar built-in functionality through `Object.assign()`.
[`console.log()`]: console.html#console_console_log_data
[`console.error()`]: console.html#console_console_error_data
[`Buffer.isBuffer()`]: buffer.html#buffer_class_method_buffer_isbuffer_obj
[`Object.assign()`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign

0 comments on commit 58b70d3

Please sign in to comment.