react-styleguidist
Version:
React components style guide generator
17 lines (13 loc) • 306 B
JavaScript
;
const path = require('path');
class RequireStatement {
constructor(filepath) {
this.filepath = filepath.replace(
new RegExp(path.resolve(__dirname, '../../..'), 'g'),
'<rootDir>'
);
}
}
module.exports = function requireIt(filepath) {
return new RequireStatement(filepath);
};