mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 18:25:57 +01:00
9 lines
286 B
JavaScript
9 lines
286 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
function myfunc() {
|
|
const package_path = path.dirname(require.resolve(path.join('cirosantilli-data-files', 'package.json')));
|
|
return fs.readFileSync(path.join(package_path, 'mydata.txt'), 'utf-8');
|
|
}
|
|
exports.myfunc = myfunc;
|