mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-22 06:59:45 -04:00
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
process(src, filename, config, options) {
|
|
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
|
|
},
|
|
};
|