mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
No need to do if (internalModuleCache...), it's in requireNative.
This commit is contained in:
committed by
Ryan Dahl
parent
d429033fd7
commit
4e6b9b0992
@@ -455,13 +455,8 @@ var module = (function () {
|
|||||||
debug("loadModule REQUEST " + (request) + " parent: " + parent.id);
|
debug("loadModule REQUEST " + (request) + " parent: " + parent.id);
|
||||||
|
|
||||||
// native modules always take precedence.
|
// native modules always take precedence.
|
||||||
var cachedNative = internalModuleCache[id];
|
|
||||||
if (cachedNative) {
|
|
||||||
return callback ? callback(null, cachedNative.exports) : cachedNative.exports;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nativeSource[id]) {
|
if (nativeSource[id]) {
|
||||||
debug('load native module ' + id);
|
//debug('load native module ' + id);
|
||||||
var nativeMod = requireNative(id);
|
var nativeMod = requireNative(id);
|
||||||
return callback ? callback(null, nativeMod) : nativeMod;
|
return callback ? callback(null, nativeMod) : nativeMod;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user