From 0cee4c3eaec7a089c30ee9afaa7853bcf69be0dc Mon Sep 17 00:00:00 2001 From: Karol Walasek Date: Thu, 30 Apr 2020 23:50:43 +0200 Subject: [PATCH] doc: removed unnecessary util imports from vm examples PR-URL: https://github.com/nodejs/node/pull/33179 Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater --- doc/api/vm.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/doc/api/vm.md b/doc/api/vm.md index 0d6b45a4ca9e6d..34f57a8fb9b9c0 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -160,7 +160,6 @@ the value of another global variable, then execute the code multiple times. The globals are contained in the `context` object. ```js -const util = require('util'); const vm = require('vm'); const context = { @@ -235,7 +234,6 @@ the code multiple times in different contexts. The globals are set on and contained within each individual `context`. ```js -const util = require('util'); const vm = require('vm'); const script = new vm.Script('globalVar = "set"'); @@ -791,7 +789,6 @@ properties but also having the built-in objects and functions any standard will remain unchanged. ```js -const util = require('util'); const vm = require('vm'); global.globalVar = 3; @@ -896,7 +893,6 @@ The following example compiles and executes different scripts using a single [contextified][] object: ```js -const util = require('util'); const vm = require('vm'); const contextObject = { globalVar: 1 }; @@ -992,7 +988,6 @@ The following example compiles and executes code that increments a global variable and sets a new one. These globals are contained in the `contextObject`. ```js -const util = require('util'); const vm = require('vm'); const contextObject = {