UNPKG

arc-templates

Version:

Fully powered JavaScript template engine with halfway-decent syntax.

12 lines (9 loc) 247 B
import fs from 'fs'; import Promise from 'bluebird'; const readFileAsync = Promise.promisify(fs.readFile); class NodeFilesystem { readFile(path) { return readFileAsync(path, 'utf8'); } } export default NodeFilesystem;