Function checkFileExt

  • 检查是否为 file.ext string 文件扩展名

    Parameters

    • arr: string[]
    • value: string

      字符串值

    Returns boolean

    checkFileExt(['png', 'jpg'], 'test.jpg'); /// true
    checkFileExt(['png', 'jpg'], 'test.JPG'); /// true
    checkFileExt(['png', 'jpg'], 'test.jpg.txt'); /// false