This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// assign html string value with easy-to-ready format | |
const html = (function() {/* This line will be removed!!!! | |
<div> | |
hello world!!! | |
</div> | |
This line will be removed!!!! */}).toString().split('\n').slice(1,-1).join('\n'); |
OlderNewer