Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-10-01 21:49:03 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2020-10-09 21:46:47 +0300
commitbd45124f00473b0e5affdb206c520a70330dd27d (patch)
treece947fbac1be6ec76a6fab10827c75e5231ffa21 /doc/api/vm.md
parent9fedb044e7d6d9802215ed4d04226c5a642b1fb1 (diff)
doc: harmonize changes list ordering
Refs: https://github.com/nodejs/remark-preset-lint-node/pull/139 PR-URL: https://github.com/nodejs/node/pull/35454 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'doc/api/vm.md')
-rw-r--r--doc/api/vm.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/api/vm.md b/doc/api/vm.md
index fcddc6c1fbc..ce5ff95f72b 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -54,14 +54,14 @@ executed in specific contexts.
<!-- YAML
added: v0.3.1
changes:
- - version: v5.7.0
- pr-url: https://github.com/nodejs/node/pull/4777
- description: The `cachedData` and `produceCachedData` options are
- supported now.
- version: v10.6.0
pr-url: https://github.com/nodejs/node/pull/20300
description: The `produceCachedData` is deprecated in favour of
`script.createCachedData()`.
+ - version: v5.7.0
+ pr-url: https://github.com/nodejs/node/pull/4777
+ description: The `cachedData` and `produceCachedData` options are
+ supported now.
-->
* `code` {string} The JavaScript code to compile.
@@ -813,15 +813,15 @@ const vm = require('vm');
<!-- YAML
added: v10.10.0
changes:
+ - version: v14.3.0
+ pr-url: https://github.com/nodejs/node/pull/33364
+ description: Removal of `importModuleDynamically` due to compatibility
+ issues.
- version:
- v14.1.0
- v13.14.0
pr-url: https://github.com/nodejs/node/pull/32985
description: The `importModuleDynamically` option is now supported.
- - version: v14.3.0
- pr-url: https://github.com/nodejs/node/pull/33364
- description: Removal of `importModuleDynamically` due to compatibility
- issues.
-->
* `code` {string} The body of the function to compile.