node/lib/internal
cjihrig 698bf2e829 repl: don't override all internal repl defaults
The createInternalRepl() module accepts an options object as an
argument. However, if one is provided, it overrides all of the
default options. This commit applies the options object to the
defaults, only changing the values that are explicitly set.

PR-URL: https://github.com/nodejs/node/pull/7826
Reviewed-By: James M Snell <jasnell@gmail.com>
2016-12-13 16:25:30 -05:00
..
streams streams: refactor LazyTransform to internal/ 2015-09-15 13:53:21 -04:00
child_process.js child_process: workaround fd passing issue on OS X 2016-10-26 14:09:13 -04:00
cluster.js cluster: remove handles when disconnecting worker 2015-12-23 08:38:33 -08:00
freelist.js lib: freelist: use .pop() for allocation 2016-03-21 12:57:52 -07:00
module.js module,repl: remove repl require() hack 2016-01-19 11:52:29 -08:00
net.js net: move isLegalPort to internal/net 2016-03-02 14:01:11 -08:00
readme.md doc: add internal modules notice 2015-08-25 11:58:50 -04:00
repl.js repl: don't override all internal repl defaults 2016-12-13 16:25:30 -05:00
socket_list.js child_process: refactor self=this in socket_list 2016-04-08 17:34:18 -04:00
util.js util: move .decorateErrorStack to internal/util 2016-01-19 11:52:29 -08:00
v8_prof_polyfill.js tickprocessor: apply c++filt manually on mac 2016-11-22 17:38:09 +08:00
v8_prof_processor.js tickprocessor: apply c++filt manually on mac 2016-11-22 17:38:09 +08:00

Internal Modules

The modules in lib/internal are intended for internal use in Node.js core only, and are not accessible with require() from user modules. These are subject to change at any time. Reliance on these modules outside of core is not supported in any way.