0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/lib/internal
Michaël Zasso 01c9575ad5
util: add type check functions for BigInt arrays
Adds `isBigInt64Array` and `isBigUint64Array`.

PR-URL: https://github.com/nodejs/node/pull/19201
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2018-04-11 13:23:35 -04:00
..
bootstrap lib: ensure --check flag works with --require 2018-04-04 17:31:45 -07:00
cluster cluster: add support for NODE_OPTIONS="--inspect" 2018-03-21 15:27:54 -04:00
crypto crypto: add support for AES-CCM 2018-04-06 13:02:43 +02:00
http2 http2: emit session connect on next tick 2018-04-11 08:57:54 +02:00
modules module: fix e.stack error when throwing undefined or null 2018-04-10 00:47:12 +02:00
process vm: add support for import.meta to Module 2018-03-31 19:55:50 -05:00
repl repl: support top-level await 2017-11-16 15:42:46 -08:00
streams stream: always emit error before close 2018-04-09 12:30:41 +02:00
test src: put bootstrappers in lib/internal/bootstrap/ 2018-03-15 20:50:34 +08:00
util util: add type check functions for BigInt arrays 2018-04-11 13:23:35 -04:00
vm module: move options checks from C++ to JS 2018-04-07 15:10:27 +02:00
async_hooks.js async_hooks: add copyHooks function 2018-03-20 07:42:00 +01:00
buffer.js buffer: improve write(U)Int functions 2018-03-24 16:50:01 +01:00
child_process.js child_process: define EACCES as a runtime error 2018-03-15 20:47:45 +05:30
cli_table.js console: add table method 2018-03-30 19:41:41 -05:00
constants.js url: replace "magic" numbers by constants 2018-04-05 08:38:46 +02:00
encoding.js lib: always show ERR_INVALID_ARG_TYPE received part 2018-03-25 01:45:37 +01:00
errors.js errors: change ERR_HTTP2_HEADER_SINGLE_VALUE to TypeError 2018-04-09 13:29:48 +02:00
freelist.js
fs.js fs: refactor stats array to be more generic 2018-04-04 15:25:59 +08:00
http.js http: convert utcDate to use setTimeout 2017-12-29 00:08:54 +01:00
inspector_async_hook.js inspector: no async tracking for promises 2017-11-21 13:57:05 +01:00
linkedlist.js
net.js net: track bytesWritten in C++ land 2018-03-30 14:20:40 +02:00
os.js
process.js Revert "process: add more version properties to release" 2018-03-25 03:18:56 +02:00
querystring.js
readline.js lib,test: lint fixes for linter upgrade 2018-03-24 04:11:40 -07:00
readme.md
repl.js lib: switch to Number.isNaN 2018-02-16 18:09:56 +01:00
safe_globals.js
socket_list.js lib: port remaining errors to new system 2018-03-07 14:54:38 +01:00
stream_base_commons.js lib: merge stream code for http2 streams & net.Socket 2018-03-27 12:57:23 +02:00
timers.js lib: port remaining errors to new system 2018-03-07 14:54:38 +01:00
tls.js
trace_events_async_hooks.js src: add tracing category macros 2018-03-09 08:09:41 -08:00
tty.js tty: add color support for more terminals 2018-04-04 15:14:05 +02:00
url.js url: make urlToOptions() handle IPv6 literals 2018-04-10 09:05:20 +02:00
util.js buffer: do deprecation warning outside node_modules 2018-04-10 00:43:41 +02:00
v8_prof_polyfill.js tools, test: fix prof polyfill readline 2018-02-17 10:06:53 -02:00
v8_prof_processor.js lib: define printErr() in script string 2018-03-12 08:45:13 -07:00
v8.js util: show Weak(Set|Map) entries in inspect 2018-03-25 03:21:27 +02:00
wrap_js_stream.js lib: port remaining errors to new system 2018-03-07 14:54:38 +01: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.