npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

babel-plugin-heredoc

1.0.0

@gajus

npmHomeRepoSnykSocket
Downloads:0
$ npm install babel-plugin-heredoc
DailyWeeklyMonthlyYearly

babel-plugin-heredoc

Travis build status NPM version Canonical Code Style Twitter Follow

Example transpilation

Input:

const foo = <heredoc>
I am a string!
</heredoc>;

Output:

const foo = '\n
I am a string!\n
';