rudeshark.net/src/common/build/license.ts
syuilo 88e4f1b287 ✌️
2018-01-01 02:08:41 +09:00

14 lines
270 B
TypeScript

import * as fs from 'fs';
const license = fs.readFileSync(__dirname + '/../../../LICENSE', 'utf-8');
const licenseHtml = license
.replace(/\r\n/g, '\n')
.replace(/(.)\n(.)/g, '$1 $2')
.replace(/(^|\n)(.*?)($|\n)/g, '<p>$2</p>');
export {
license,
licenseHtml
};