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'; return typeof v === 'string';
} }
function isNull(v) {
return v === null;
}
function isName(v) { function isName(v) {
return v instanceof Name; return v instanceof Name;
} }