Merge pull request #5771 from timvandermeij/unused-util

Remove unused isNull utility function
This commit is contained in:
Jonas Jenwald 2015-03-02 23:21:09 +01:00
commit fa0f09bcf0

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;
}