-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from colincasey/bugfix/222_react_native_support
React Native Support
- Loading branch information
Showing
12 changed files
with
362 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
function requireUtil() { | ||
try { | ||
// eslint-disable-next-line no-restricted-modules | ||
return require("util"); | ||
} catch (e) { | ||
return null; | ||
} | ||
} | ||
|
||
// for v10.12.0+ | ||
function lookupCustomInspectSymbol() { | ||
return Symbol.for("nodejs.util.inspect.custom"); | ||
} | ||
|
||
// for older node environments | ||
function tryReadingCustomSymbolFromUtilInspect(options) { | ||
const _requireUtil = options.requireUtil || requireUtil; | ||
const util = _requireUtil(); | ||
return util ? util.inspect.custom : null; | ||
} | ||
|
||
exports.getUtilInspect = function getUtilInspect(fallback, options = {}) { | ||
const _requireUtil = options.requireUtil || requireUtil; | ||
const util = _requireUtil(); | ||
return function inspect(value, showHidden, depth) { | ||
return util ? util.inspect(value, showHidden, depth) : fallback(value); | ||
}; | ||
}; | ||
|
||
exports.getCustomInspectSymbol = function getCustomInspectSymbol(options = {}) { | ||
const _lookupCustomInspectSymbol = | ||
options.lookupCustomInspectSymbol || lookupCustomInspectSymbol; | ||
|
||
// get custom inspect symbol for node environments | ||
return ( | ||
_lookupCustomInspectSymbol() || | ||
tryReadingCustomSymbolFromUtilInspect(options) | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"rules": { | ||
"no-restricted-modules": "off" | ||
} | ||
} |
Oops, something went wrong.