[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/nodegit/nodegit/master/lib/object.js [Back]  [Original]

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(
    () => Obj.TYPE.INVALID,
    "Use NodeGit.Object.TYPE.INVALID instead of NodeGit.Object.TYPE.BAD."
  )
});

Web Proxy Viewer  |  New URL  |  Original Page