| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent bdd91e0 commit 127ed73
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -271,11 +271,6 @@ Platform check for Windows 32-bit on Windows 64-bit. | |||
| 271 | 271 | ||
| 272 | 272 | Checks whether any globals are not on the `knownGlobals` list. | |
| 273 | 273 | ||
| 274 | - ### libDir | ||
| 275 | - * return [<String>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | ||
| 276 | - | ||
| 277 | - Path to the 'lib' directory. | ||
| 278 | - | ||
| 279 | 274 | ### localhostIPv4 | |
| 280 | 275 | * return [<String>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | |
| 281 | 276 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,10 +1,10 @@ | |||
| 1 | 1 | /* eslint-disable required-modules */ | |
| 2 | 2 | 'use strict'; | |
| 3 | - var path = require('path'); | ||
| 4 | - var fs = require('fs'); | ||
| 5 | - var assert = require('assert'); | ||
| 6 | - var os = require('os'); | ||
| 7 | - var child_process = require('child_process'); | ||
| 3 | + const path = require('path'); | ||
| 4 | + const fs = require('fs'); | ||
| 5 | + const assert = require('assert'); | ||
| 6 | + const os = require('os'); | ||
| 7 | + const child_process = require('child_process'); | ||
| 8 | 8 | const stream = require('stream'); | |
| 9 | 9 | const util = require('util'); | |
| 10 | 10 | const Timer = process.binding('timer_wrap').Timer; | |
@@ -14,7 +14,6 @@ const testRoot = process.env.NODE_TEST_DIR ? | |||
| 14 | 14 | ||
| 15 | 15 | exports.testDir = __dirname; | |
| 16 | 16 | exports.fixturesDir = path.join(exports.testDir, 'fixtures'); | |
| 17 | - exports.libDir = path.join(exports.testDir, '../lib'); | ||
| 18 | 17 | exports.tmpDirName = 'tmp'; | |
| 19 | 18 | // PORT should match the definition in test/testpy/__init__.py. | |
| 20 | 19 | exports.PORT = +process.env.NODE_COMMON_PORT || 12346; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments