/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
benchmark/fixtures/require-builtins.js
43 строки
522 B
Joyee Cheung
benchmark: remove punycode from require-builtins fixture
15 ноя 2023, 03:48
Не верифицирован
15 ноя 2023, 03:48
5a94df4
Код
Авторство
О чём код?
'use strict'; const list = [ 'async_hooks', 'assert', 'buffer', 'child_process', 'console', 'constants', 'crypto', 'cluster', 'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'http2', 'https', 'module', 'net', 'os', 'path', 'perf_hooks', 'process', 'querystring', 'readline', 'repl', 'stream', 'string_decoder', 'timers', 'tls', 'tty', 'url', 'util', 'vm', 'zlib', ]; for (let i = 0; i < list.length; ++i) { const item = list[i]; require(item); }