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 RGB_FUNCTION = 'rgba?'; | |
const HSL_FUNCTION = 'hsla?'; | |
const HWB_FUNCTION = 'hwb'; | |
const CMYK_FUNCTION = 'device-cmyk'; | |
const LAB_FUNCTION = 'lab'; | |
const LCH_FUNCTION = 'lch'; | |
const GRAY_FUNCTION = 'gray'; | |
const COLOR_FUNCTION = 'color'; | |
const FUNCTION_START = '\\('; | |
/** https://www.w3.org/TR/css-syntax-3/#consume-function */ |
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
import Connection from 'tedious/lib/connection.js'; | |
/** @typedef {import('tedious').ConnectionConfig} ConnectionConfig */ | |
/** @typedef {import('tedious').ConnectionError} ConnectionError */ | |
/** @typedef {import('tedious').RequestError} RequestError */ | |
const MIN_CONNECTION_POOL = 2; | |
const MAX_CONNECTION_POOL = 10; | |
const MAX_CONNECTION_IDLE = 5000; | |
const MAX_CONNECTION_RETRY_TIME = 30000; |
NewerOlder