0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/lib/internal
Rich Trott b7f4b1ba4c process: fix incorrect usage of assert.fail()
The message argument for `assert.fail()` is the third argument, not the
first. Correct minor misuse in internal module.

PR-URL: https://github.com/nodejs/node/pull/6211
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-04-18 09:55:41 -07:00
..
process process: fix incorrect usage of assert.fail() 2016-04-18 09:55:41 -07:00
streams streams: refactor LazyTransform to internal/ 2015-09-14 19:58:04 -07:00
bootstrap_node.js lib: improve module loading performance 2016-04-14 14:58:46 -04:00
child_process.js child_process: add keepOpen option to send() 2016-02-22 11:55:30 -05:00
cluster.js cluster: remove handles when disconnecting worker 2015-11-06 23:02:11 +01:00
freelist.js lib: freelist: use .pop() for allocation 2016-03-02 09:24:24 -08:00
linkedlist.js lib,test: deprecate _linklist 2015-10-08 17:32:08 -07:00
module.js lib: improve module loading performance 2016-04-14 14:58:46 -04:00
net.js net: strict checking for internal/net isLegalPort 2016-03-21 12:08:57 -07:00
process.js lib,src: refactor src/node.js into internal files 2016-03-22 19:20:01 -04:00
readline.js readline: emit key info unconditionally 2016-04-05 10:48:59 -04:00
readme.md doc: add internal modules notice 2015-08-25 11:58:50 -04:00
repl.js repl: make sure historyPath is trimmed 2016-01-16 13:21:53 -06:00
socket_list.js child_process: refactor self=this in socket_list 2016-03-27 12:51:33 +03:00
util.js process: add 'warning' event and process.emitWarning() 2016-03-24 13:19:11 -07:00
v8_prof_polyfill.js buffer: add .from(), .alloc() and .allocUnsafe() 2016-03-16 08:34:02 -07:00
v8_prof_processor.js lib: wrap tick_processor scripts in IIFE 2016-03-03 20:35:20 -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.