Skip to content

Instantly share code, notes, and snippets.

@oleersoy
Created January 26, 2019 02:45
Show Gist options
  • Select an option

  • Save oleersoy/394bea7031a65898486f1c9f2b77be3f to your computer and use it in GitHub Desktop.

Select an option

Save oleersoy/394bea7031a65898486f1c9f2b77be3f to your computer and use it in GitHub Desktop.
fixtures for file system reads
"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