检查是否为 file.ext string 文件扩展名
字符串值
checkFileExt(['png', 'jpg'], 'test.jpg'); /// truecheckFileExt(['png', 'jpg'], 'test.JPG'); /// truecheckFileExt(['png', 'jpg'], 'test.jpg.txt'); /// false Copy
checkFileExt(['png', 'jpg'], 'test.jpg'); /// truecheckFileExt(['png', 'jpg'], 'test.JPG'); /// truecheckFileExt(['png', 'jpg'], 'test.jpg.txt'); /// false
检查是否为 file.ext string 文件扩展名