UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

9 lines (7 loc) 233 B
var fs = require('fs') , highlight = require('./highlight'); module.exports = function highlightFileSync (fullPath, opts) { var code = fs.readFileSync(fullPath, 'utf-8'); opts = opts || { }; return highlight(code, opts); };