Compare commits

...

3 Commits

Author SHA1 Message Date
Pranshu Chittora
b9a15ece18 Merge 26ae159967 into 10872e02d1 2024-06-20 02:29:26 +00:00
pranshuchittora
26ae159967 Merge pull request #1 from pranshuchittora/pranshuchittora-1
Specified module importing path clearly
2018-07-29 10:22:58 +05:30
pranshuchittora
a8a8b56ad7 Specified module importing path clearly 2018-07-29 10:22:08 +05:30

View File

@@ -73,7 +73,7 @@ ref(); // If you had previously unref()d a timer you can call ref() to explic
* http://nodejs.org/api/modules.html
* ******************************************************************************************* */
// require() accepts a relative path of the given module w.r.t. the file you are importing it in.
var module = require('./module.js'); // Loads the module module.js in the same directory.
module.require('./another_module.js'); // load another_module as if require() was called from the module itself.