0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/lib/internal
Anna Henningsen beca3244e2
buffer: allow Uint8Array input to methods
Allow all methods on `buffer` and `Buffer` to take `Uint8Array`
arguments where it makes sense. On the native side, there is
effectively no difference, and as a bonus the `isUint8Array`
check is faster than `instanceof Buffer`.

PR-URL: https://github.com/nodejs/node/pull/10236
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
2016-12-21 07:48:14 +01:00
..
process promise: better stack traces for --trace-warnings 2016-12-05 18:19:34 +01:00
streams stream: improve Readable.read() performance 2016-06-14 15:15:34 -04:00
bootstrap_node.js lib: make String(global) === '[object global]' 2016-11-02 23:19:31 +01:00
buffer.js buffer: allow Uint8Array input to methods 2016-12-21 07:48:14 +01:00
child_process.js child_process: add public API for IPC channel 2016-11-01 20:37:57 -04:00
cluster.js
freelist.js
fs.js fs: export realpathCacheKey from internal/fs 2016-11-16 20:22:18 +01:00
linkedlist.js lib: change == to === in linkedlist 2016-11-01 23:48:57 +01:00
module.js repl: keep the built-in modules non-enumerable 2016-04-18 15:31:51 -07:00
net.js net: Validate port in createServer().listen() 2016-04-20 15:41:18 -07:00
process.js intl: add deprecation warning for v8BreakIterator 2016-10-07 09:29:50 -07:00
readline.js readline: use icu based string width calculation 2016-10-25 09:00:45 -07: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, test: fix typo in inspect output, add test 2016-12-14 05:20:42 +01:00
util.js internal/util: move the case 'latin1' 2016-12-05 14:43:09 -08:00
v8_prof_polyfill.js lib: fix TypeError in v8-polyfill 2016-10-06 10:10:19 -07:00
v8_prof_processor.js process: changed var to const in internal/v8_prof_processor 2016-09-22 09:48:47 -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.