1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Remove unused isNull utility function

This commit is contained in:
Tim van der Meij 2015-02-28 18:50:58 +01:00
parent a033b4bf3d
commit 026b57641f

View file

@ -976,10 +976,6 @@ function isString(v) {
return typeof v === 'string';
}
function isNull(v) {
return v === null;
}
function isName(v) {
return v instanceof Name;
}