forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobject.js
More file actions
46 lines (41 loc) · 1.21 KB
/
object.js
File metadata and controls
46 lines (41 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var git = require('../');
git.Object.Type = {
Any: -2, /**< Object can be any of the following */
Bad: -1, /**< Object is invalid. */
Ext1: 0, /**< Reserved for future use. */
Commit: 1, /**< A commit object. */
Tree: 2, /**< A tree (directory listing) object. */
Blob: 3, /**< A file revision object. */
Tag: 4, /**< An annotated tag object. */
Ext2: 5, /**< Reserved for future use. */
OffsetDelta: 6, /**< A delta, base is given by an offset. */
OidDelta: 7 /**< A delta, base is given by object id. */
};
/**
* Is this object a commit?
* @return {Boolean}
*/
git.Object.prototype.isCommit = function() {
return this.type() == git.Object.Type.Commit;
};
/**
* Is this object a tree?
* @return {Boolean}
*/
git.Object.prototype.isTree = function() {
return this.type() == git.Object.Type.Tree;
};
/**
* Is this object a blob?
* @return {Boolean}
*/
git.Object.prototype.isBlob = function() {
return this.type() == git.Object.Type.Blob;
};
/**
* Is this object a tag?
* @return {Boolean}
*/
git.Object.prototype.isTag = function() {
return this.type() == git.Object.Type.Tag;
};