Files: d2fc80d053b60b029fe06052bffd46c21ec9caa2 / get-style-for-module.js
163 bytesRaw
1 | const fs = require('fs') |
2 | |
3 | module.exports = (filename) => () => { |
4 | const mcssPath = filename.replace(/js$/, 'mcss') |
5 | |
6 | return fs.readFileSync(mcssPath, 'utf8') |
7 | } |
8 | |
9 |
Built with git-ssb-web