index.js 264 B

12345678910
  1. 'use strict';
  2. var fs = require('fs')
  3. , doT = require('dot');
  4. module.exports = {
  5. range: doT.compile(fs.readFileSync(__dirname + '/range.jst', 'utf8')),
  6. rangeWithErrors: doT.compile(fs.readFileSync(__dirname + '/range_with_errors.jst', 'utf8'))
  7. };