summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-03-05 15:50:22 -0800
committerRich Trott <rtrott@gmail.com>2018-03-07 19:06:44 -0800
commit3c31bfff6599cf68bda2552a92d982559bd64c5e (patch)
treed7f8aa1e07ff4050c575ee21d13c7613d13f178f /lib
parent282e65cfe3d38c582b77939c26b9c00952805340 (diff)
downloadnode-new-3c31bfff6599cf68bda2552a92d982559bd64c5e.tar.gz
benchmark,lib,test,tools: use consistent quotes
In preparation for a linting rule, use consistent quotation for properties in objects. PR-URL: https://github.com/nodejs/node/pull/19156 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'lib')
-rw-r--r--lib/internal/loader/DefaultResolve.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/loader/DefaultResolve.js b/lib/internal/loader/DefaultResolve.js
index c561417bd1..f99e0c98b9 100644
--- a/lib/internal/loader/DefaultResolve.js
+++ b/lib/internal/loader/DefaultResolve.js
@@ -43,7 +43,7 @@ function search(target, base) {
}
const extensionFormatMap = {
- __proto__: null,
+ '__proto__': null,
'.mjs': 'esm',
'.json': 'json',
'.node': 'addon',