File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -120,12 +120,8 @@ plan accordingly.
120
120
Node.js has several modules compiled into the binary. These modules are
121
121
described in greater detail elsewhere in this documentation.
122
122
123
- <<<<<<< HEAD
124
- The core modules are defined in Node.js's source in the ` lib/ ` folder.
125
- =======
126
- The core modules are defined within io.js's source and are located in the
123
+ The core modules are defined within Node.js's source and are located in the
127
124
` lib/ ` folder.
128
- >>>>>>> doc: small clarifications to modules.markdown
129
125
130
126
Core modules are always preferentially loaded if their identifier is
131
127
passed to ` require() ` . For instance, ` require('http') ` will always
@@ -135,14 +131,9 @@ return the built in HTTP module, even if there is a file by that name.
135
131
136
132
<!-- type=misc-->
137
133
138
- <<<<<<< HEAD
139
134
If the exact filename is not found, then Node.js will attempt to load the
140
- required filename with the added extension of ` .js ` , ` .json ` , and then ` .node ` .
141
- =======
142
- If the exact filename is not found, then io.js will attempt to load the
143
135
required filename with the added extensions: ` .js ` , ` .json ` , and finally
144
136
` .node ` .
145
- >>>>>>> doc: small clarifications to modules.markdown
146
137
147
138
` .js ` files are interpreted as JavaScript text files, and ` .json ` files are
148
139
parsed as JSON text files. ` .node ` files are interpreted as compiled addon
You can’t perform that action at this time.
0 commit comments