Skip to content

Instantly share code, notes, and snippets.

@twalker
Last active August 29, 2015 14:14
Show Gist options
  • Save twalker/08809a793f48aefec01f to your computer and use it in GitHub Desktop.
Save twalker/08809a793f48aefec01f to your computer and use it in GitHub Desktop.
read-template
// using stringify
// import foo from './foo.html'
// using brfs:
// var foo = require('fs').readFileSync('foo.html', 'utf8')
import fs from 'fs'
export default function read(path){
return fs.readFileSync(path, 'utf8')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment