Fix SVG detection (#4401)

* Fix SVG detection

* remove unnecessary import
This commit is contained in:
MeiMei
2019-03-03 08:48:02 +09:00
committed by syuilo
parent 972fb8eb40
commit d4ff19f013
3 changed files with 16 additions and 4 deletions

12
src/misc/check-svg.ts Normal file
View File

@ -0,0 +1,12 @@
import * as fs from 'fs';
import * as isSvg from 'is-svg';
export default function(path: string) {
try {
const size = fs.statSync(path).size;
if (size > 1 * 1024 * 1024) return false;
return isSvg(fs.readFileSync(path));
} catch {
return false;
}
}