Class: LodashExtended

Class Name LodashExtended
Superclass Object
File src/lodash.coffee

Description

This class extends lodash with functionality we need for PromisedGit.

.extend()

Mixin our methods to lodash and return the extended instance.

Return Values
Returns the extended lodash instance as Object.
::isActor(obj)

Check if obj is an instance of Actor.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isAmend(obj)

Check if obj is an instance of Amend.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isCommit(obj)

Check if obj is an instance of Commit.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isDiff(obj)

Check if obj is an instance of Diff.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isFile(obj)

Check if obj is an instance of File.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isStatus(obj)

Check if obj is an instance of Status.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isTag(obj)

Check if obj is an instance of Tag.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isTreeish(obj)

Check if obj is an instance of Treeish.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.
::isPromisedGit(obj)

Check if obj is an instance of PromisedGit.

Argument Description
obj The object to check as Object.
Return Values
Returns Boolean.