UNPKG

jj-fast-utils

Version:
9 lines (8 loc) 296 B
/** * Determines whether the verification code is correct. 判断验证码是否正确. * * @param {number | string} code Code to be judged. 需要判断的验证码 * @return {boolean} Result. 判断结果 */ declare const isCode: (code: number | string) => boolean; export default isCode;