Created
January 26, 2019 02:45
-
-
Save oleersoy/394bea7031a65898486f1c9f2b77be3f to your computer and use it in GitHub Desktop.
fixtures for file system reads
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
| "use strict"; | |
| const html = ()=>{ | |
| return | |
| `<!DOCTYPE html> | |
| <html lang="en"> | |
| `} | |
| const css = ()=>{ | |
| return `.red { color: red; }` | |
| } | |
| const sss = ()=>{ | |
| return `.a | |
| color: red` | |
| } | |
| exports.html = html; | |
| exports.css = css; | |
| exports.sss = sss; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment