Javascript 에서 url 또는 path 로 표현된 파일을 인자로 받았을 때 이미지인지 아닌지 확인
// use Regexp
function isImage( fileName ) {
const regexp = /(\.jpg|\.jpeg|\.png)$/i;
return regexp.text( fileName );
}
console.log( isImage( 'test.png' ) ); // true
console.log( isImage( 'test.txt' ) ); // false