File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,29 +18,29 @@ git.Object.Type = {
1818 * @return {Boolean }
1919 */
2020git . Object . prototype . isCommit = function ( ) {
21- return this . type ( ) == Object . Type . Commit ;
21+ return this . type ( ) == git . Object . Type . Commit ;
2222} ;
2323
2424/**
2525 * Is this object a tree?
2626 * @return {Boolean }
2727 */
2828git . Object . prototype . isTree = function ( ) {
29- return this . type ( ) == Object . Type . Tree ;
29+ return this . type ( ) == git . Object . Type . Tree ;
3030} ;
3131
3232/**
3333 * Is this object a blob?
3434 * @return {Boolean }
3535 */
3636git . Object . prototype . isBlob = function ( ) {
37- return this . type ( ) == Object . Type . Blob ;
37+ return this . type ( ) == git . Object . Type . Blob ;
3838} ;
3939
4040/**
4141 * Is this object a tag?
4242 * @return {Boolean }
4343 */
4444git . Object . prototype . isTag = function ( ) {
45- return this . type ( ) == Object . Type . Tag ;
45+ return this . type ( ) == git . Object . Type . Tag ;
4646} ;
You can’t perform that action at this time.
0 commit comments