nodegit
Version:
Node.js libgit2 asynchronous native bindings
32 lines (25 loc) • 603 B
JavaScript
;
var NodeGit = require("../");
var DiffLine = NodeGit.DiffLine;
var _rawContent = DiffLine.prototype.content;
/**
* The relevant line
* @return {String}
*/
DiffLine.prototype.content = function () {
if (!this._cache) {
this._cache = {};
}
if (!this._cache.content) {
this._cache.content = new Buffer(this.rawContent()).slice(0, this.contentLen()).toString("utf8");
}
return this._cache.content;
};
/**
* The non utf8 translated text
* @return {String}
*/
DiffLine.prototype.rawContent = function () {
return _rawContent.call(this);
};
NodeGit.DiffLine = DiffLine;