11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ci
31cb0ef41Sopenharmony_ciconst list = [
41cb0ef41Sopenharmony_ci  'async_hooks',
51cb0ef41Sopenharmony_ci  'assert',
61cb0ef41Sopenharmony_ci  'buffer',
71cb0ef41Sopenharmony_ci  'child_process',
81cb0ef41Sopenharmony_ci  'console',
91cb0ef41Sopenharmony_ci  'constants',
101cb0ef41Sopenharmony_ci  'crypto',
111cb0ef41Sopenharmony_ci  'cluster',
121cb0ef41Sopenharmony_ci  'dgram',
131cb0ef41Sopenharmony_ci  'dns',
141cb0ef41Sopenharmony_ci  'domain',
151cb0ef41Sopenharmony_ci  'events',
161cb0ef41Sopenharmony_ci  'fs',
171cb0ef41Sopenharmony_ci  'http',
181cb0ef41Sopenharmony_ci  'http2',
191cb0ef41Sopenharmony_ci  'https',
201cb0ef41Sopenharmony_ci  'module',
211cb0ef41Sopenharmony_ci  'net',
221cb0ef41Sopenharmony_ci  'os',
231cb0ef41Sopenharmony_ci  'path',
241cb0ef41Sopenharmony_ci  'perf_hooks',
251cb0ef41Sopenharmony_ci  'process',
261cb0ef41Sopenharmony_ci  'punycode',
271cb0ef41Sopenharmony_ci  'querystring',
281cb0ef41Sopenharmony_ci  'readline',
291cb0ef41Sopenharmony_ci  'repl',
301cb0ef41Sopenharmony_ci  'stream',
311cb0ef41Sopenharmony_ci  'string_decoder',
321cb0ef41Sopenharmony_ci  'timers',
331cb0ef41Sopenharmony_ci  'tls',
341cb0ef41Sopenharmony_ci  'tty',
351cb0ef41Sopenharmony_ci  'url',
361cb0ef41Sopenharmony_ci  'util',
371cb0ef41Sopenharmony_ci  'vm',
381cb0ef41Sopenharmony_ci  'zlib',
391cb0ef41Sopenharmony_ci];
401cb0ef41Sopenharmony_ci
411cb0ef41Sopenharmony_cifor (let i = 0; i < list.length; ++i) {
421cb0ef41Sopenharmony_ci  const item = list[i];
431cb0ef41Sopenharmony_ci  require(item);
441cb0ef41Sopenharmony_ci}
45