UNPKG

medic-enketo-xslt

Version:

XSL stylesheets for the Enketo XForm transformation to be run client-side in a web browser

15 lines (12 loc) 416 B
var xslModel, xslForm, fs = require('fs'), path = require('path'), xslModelPath = path.resolve(__dirname, './xsl/openrosa2xmlmodel.xsl'), xslFormPath = path.resolve(__dirname, './xsl/openrosa2html5form.xsl'); // only read once xslModel = fs.readFileSync(xslModelPath, {encoding: 'utf8'}); xslForm = fs.readFileSync(xslFormPath, {encoding: 'utf8'}); module.exports = { xslModel: xslModel, xslForm: xslForm };