Upload Kmake

This commit is contained in:
Gorochu
2026-05-26 23:36:42 -07:00
parent ba051b2f74
commit 555ec72358
41615 changed files with 13344630 additions and 1 deletions

View File

@ -0,0 +1,2 @@
import mod from 'import-require-esm';
console.log(mod.hello);

View File

@ -0,0 +1,2 @@
import mod from 'require-esm';
console.log(mod.hello);

View File

@ -0,0 +1 @@
export const hello = 'world';

View File

@ -0,0 +1,4 @@
{
"type": "module",
"main": "index.js"
}

View File

@ -0,0 +1,2 @@
import mod from 'require-esm';
export default mod;

View File

@ -0,0 +1,4 @@
{
"type": "module",
"main": "index.js"
}

View File

@ -0,0 +1,2 @@
module.exports = require('esm');

View File

@ -0,0 +1,2 @@
const { hello } = require('esm');
console.log(hello);

View File

@ -0,0 +1,2 @@
const { hello } = require('require-esm');
console.log(hello);