node/lib/internal
Brian White c5874d1bd4
url: remove invalid file protocol check
'file' should have been 'file:' but since the WHATWG URL spec
suggests using an opaque origin (which is what was already being
used for file URLs), we'll just keep using that, making this merely
a cleanup.

PR-URL: https://github.com/nodejs/node/pull/11691
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-03-13 11:18:59 -04:00
..
cluster lib: remove unnecessary assignments with _extend 2017-02-22 21:05:20 +01:00
process lib: rename kMaxCallbacksUntilQueueIsShortened 2017-02-24 02:46:34 +01:00
streams stream: move legacy to lib/internal dir 2017-02-14 11:51:47 -05:00
bootstrap_node.js process: improve memoryUsage() performance 2017-02-25 12:05:22 -05:00
buffer.js buffer: add buffer.transcode 2016-11-03 04:49:14 -05:00
child_process.js child_process: refactor internal/child_process.js 2017-02-22 21:05:07 +01:00
errors.js errors: add internal/errors.js 2017-02-25 10:56:19 -05:00
freelist.js
fs.js fs: export realpathCacheKey from internal/fs 2016-11-22 06:35:55 +01:00
linkedlist.js lib: change == to === in linkedlist 2016-11-03 05:37:29 -05:00
module.js benchmark,lib,test: adjust for linting 2017-01-30 12:08:27 -05:00
net.js net: Validate port in createServer().listen() 2016-04-20 15:41:18 -07:00
process.js process: fix typo in comments 2017-02-26 19:20:57 -05:00
querystring.js url: fix surrogate handling in encodeAuth() 2017-02-21 21:14:24 -05:00
readline.js readline: use icu based string width calculation 2016-11-03 04:49:14 -05:00
readme.md
repl.js repl: don't override all internal repl defaults 2016-08-08 11:03:18 -04:00
socket_list.js
url.js url: remove invalid file protocol check 2017-03-13 11:18:59 -04:00
util.js util: cleanup internalUtil.deprecate 2017-02-25 12:11:31 -05:00
v8_prof_polyfill.js lib: fix TypeError in v8-polyfill 2016-10-06 11:53:08 -07:00
v8_prof_processor.js process: changed var to const in internal/v8_prof_processor 2016-09-29 11:14:42 -07: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.