nodegit
Version:
Node.js libgit2 asynchronous native bindings
46 lines (38 loc) • 910 B
JavaScript
;
var util = require("util");
var NodeGit = require("../");
var Obj = NodeGit.Object;
/**
* Is this object a blob?
* @return {Boolean}
*/
Obj.prototype.isBlob = function () {
return this.type() == Obj.TYPE.BLOB;
};
/**
* Is this object a commit?
* @return {Boolean}
*/
Obj.prototype.isCommit = function () {
return this.type() == Obj.TYPE.COMMIT;
};
/**
* Is this object a tag?
* @return {Boolean}
*/
Obj.prototype.isTag = function () {
return this.type() == Obj.TYPE.TAG;
};
/**
* Is this object a tree?
* @return {Boolean}
*/
Obj.prototype.isTree = function () {
return this.type() == Obj.TYPE.TREE;
};
// Deprecated -----------------------------------------------------------------
Object.defineProperty(Obj.TYPE, "BAD", {
get: util.deprecate(function () {
return Obj.TYPE.INVALID;
}, "Use NodeGit.Object.TYPE.INVALID instead of NodeGit.Object.TYPE.BAD.")
});