mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
12 lines
251 B
JavaScript
Executable File
12 lines
251 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { strict as assert } from 'assert';
|
|
|
|
import anyname from './notmain.js'
|
|
assert(anyname === 1)
|
|
|
|
|
|
// Not possible, have to use import everywhere.
|
|
//import notmain2 from './notmain2.js'
|
|
//const notmain2 = require('notmain2');
|