This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _ = require('lodash'); | |
var HD = require('hd').utils; | |
var Domains = require('hd').domains; | |
var Redis = require("redis"); | |
var internals = { }; | |
internals = { | |
client: null, | |
connected: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Path = require('path'); | |
var fonts = { | |
Roboto: { | |
normal: Path.join(__dirname, 'fonts/Roboto-Regular.ttf'), | |
bold: Path.join(__dirname, 'fonts/Roboto-Medium.ttf'), | |
italics: Path.join(__dirname, 'fonts/Roboto-Italic.ttf'), | |
bolditalics: Path.join(__dirname, 'fonts/Roboto-MediumItalic.ttf') | |
} | |
}; |
OlderNewer