summaryrefslogtreecommitdiff
path: root/doc/api/console.md
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-08-02 12:52:34 +0200
committercjihrig <cjihrig@gmail.com>2017-08-09 21:56:19 -0400
commitb72e702247a4dcbbb9d678253dad2b9b223459f4 (patch)
tree1551aeb001250dbfa6de7bc22f38624f59cd7597 /doc/api/console.md
parent2923ed10bb6dd1d6a203e1a89d1aa179df5cf243 (diff)
downloadandroid-node-v8-b72e702247a4dcbbb9d678253dad2b9b223459f4.tar.gz
android-node-v8-b72e702247a4dcbbb9d678253dad2b9b223459f4.tar.bz2
android-node-v8-b72e702247a4dcbbb9d678253dad2b9b223459f4.zip
2017-08-09, Version 8.3.0 (Current)
V8 6.0: The V8 engine has been upgraded to version 6.0, which has a significantly changed performance profile. [#14574](https://github.com/nodejs/node/pull/14574) More detailed information on performance differences can be found at https://medium.com/the-node-js-collection/get-ready-a-new-v8-is-coming-node-js-performance-is-changing-46a63d6da4de Other notable changes: * **DNS** * Independent DNS resolver instances are supported now, with support for cancelling the corresponding requests. [#14518](https://github.com/nodejs/node/pull/14518) * **N-API** * Multiple N-API functions for error handling have been changed to support assigning error codes. [#13988](https://github.com/nodejs/node/pull/13988) * **REPL** * Autocompletion support for `require()` has been improved. [#14409](https://github.com/nodejs/node/pull/14409) * **Utilities** * The WHATWG Encoding Standard (`TextDecoder` and `TextEncoder`) has been implemented as an experimental feature. [#13644](https://github.com/nodejs/node/pull/13644) * **Added new collaborators** * [XadillaX](https://github.com/XadillaX) – Khaidi Chu * [gabrielschulhof](https://github.com/gabrielschulhof) – Gabriel Schulhof Conflicts: src/node_version.h
Diffstat (limited to 'doc/api/console.md')
-rw-r--r--doc/api/console.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/console.md b/doc/api/console.md
index 8dee507d27..08fcfa027c 100644
--- a/doc/api/console.md
+++ b/doc/api/console.md
@@ -169,7 +169,7 @@ console.log('this will also print');
### console.clear()
<!-- YAML
-added: REPLACEME
+added: v8.3.0
-->
When `stdout` is a TTY, calling `console.clear()` will attempt to clear the
@@ -183,7 +183,7 @@ binary.
### console.count([label])
<!-- YAML
-added: REPLACEME
+added: v8.3.0
-->
* `label` {string} The display label for the counter. Defaults to `'default'`.
@@ -216,7 +216,7 @@ undefined
### console.countReset([label = 'default'])
<!-- YAML
-added: REPLACEME
+added: v8.3.0
-->
* `label` {string} The display label for the counter. Defaults to `'default'`.