@gitsunmin/k-number
Version:
숫자를 입력하면 한글 수사를 반환하는 기능을 제공하는 라이브러리입니다. (ex. 1234 -> 천이백삼십
12 lines (11 loc) • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorCollection = void 0;
exports.ErrorCollection = {
INVALID_FORMAT: 'invalid format',
OVER_MAX_NUMBER: 'number is too big',
UNDER_MIN_NUMBER: 'number is too small',
NOT_NUMBER: 'input is not number',
NOT_INTEGER: 'number is not integer',
UNKNOWN_ERROR: 'unknown error',
};