davatar
Version:
An npm package to generate avatar.
16 lines (14 loc) • 436 B
JavaScript
const NO_TEXT = "text property null/undefined";
const TEXT_LENGTH = "text property contains less than 2 characters";
const TEXT_NOT_STRING = "text must be a string";
const SIZE_LESS_OR_ZERO = "size can't be less than or zero";
const MORE_THAN_MAX = "size can't be more than 512";
const SIZE_NAN = "size must be an integer";
module.exports = {
NO_TEXT,
TEXT_LENGTH,
SIZE_LESS_OR_ZERO,
MORE_THAN_MAX,
SIZE_NAN,
TEXT_NOT_STRING,
};