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.
120120Node.js has several modules compiled into the binary. These modules are
121121described in greater detail elsewhere in this documentation.
122122
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
127124` lib/ ` folder.
128- >>>>>>> doc: small clarifications to modules.markdown
129125
130126Core modules are always preferentially loaded if their identifier is
131127passed 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.
135131
136132<!-- type=misc-->
137133
138- <<<<<<< HEAD
139134If 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
143135required filename with the added extensions: ` .js ` , ` .json ` , and finally
144136` .node ` .
145- >>>>>>> doc: small clarifications to modules.markdown
146137
147138` .js ` files are interpreted as JavaScript text files, and ` .json ` files are
148139parsed as JSON text files. ` .node ` files are interpreted as compiled addon
You can’t perform that action at this time.
0 commit comments