forked from LeenkxTeam/Kmake
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
'use strict';
|
|
|
|
const neverSettlingDynamicImport = import('never-settle-load');
|
|
|
|
console.log('should be output');
|
|
|
|
neverSettlingDynamicImport.then(() => process.exit(1));
|