Guest User

Untitled

a guest
May 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. module.exports = function (source) {
  2. const parentFolderName = this.context.slice(this.context.lastIndexOf('/') + 1, this.context.length)
  3. const phraseToInject = `Component.displayName = \'${parentFolderName}\'\nexport default Component`
  4.  
  5. return source.replace('export default Component', phraseToInject)
  6. }
Add Comment
Please, Sign In to add comment