1
0
mirror of https://github.com/cirosantilli/china-dictatorship.git synced 2025-09-02 11:12:39 +02:00

make nodejs package programtaically usable

This commit is contained in:
Ciro Santilli
2020-03-19 00:00:00 +00:00
parent e051013e9a
commit 2c122f66b5
3 changed files with 13 additions and 5 deletions

9
index.js Normal file
View File

@@ -0,0 +1,9 @@
const fs = require('fs');
const path = require('path');
const PACKAGE_PATH = path.dirname(require.resolve(path.join('china-dictatorship', 'package.json')));
const README_PATH = path.join(PACKAGE_PATH, 'README.html');
function get_data() {
return fs.readFileSync(README_PATH, 'utf8');
}
exports.get_data = get_data;