Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "git-core", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Simple library for working git core structures(blobs, trees, commits, tags and packs) without a repository", | ||
@@ -5,0 +5,0 @@ "main": "./src/js/index.js", |
@@ -41,4 +41,3 @@ var util = require('util') | ||
(this.committer.email || '') + "> " + | ||
common.timestamp(this.committer.date)); | ||
contentArray.push('\n'); | ||
common.timestamp(this.committer.date) + '\n'); | ||
contentArray.push(this.message); | ||
@@ -102,3 +101,3 @@ | ||
pos += 2; | ||
pos += 1; | ||
@@ -105,0 +104,0 @@ // message |
@@ -37,4 +37,3 @@ var util = require('util') | ||
(this.tagger.email || '') + "> " + | ||
common.timestamp(this.date)); | ||
contentArray.push('\n'); | ||
common.timestamp(this.date) + '\n'); | ||
contentArray.push(this.message); | ||
@@ -89,3 +88,3 @@ | ||
pos += 2; | ||
pos += 1; | ||
@@ -92,0 +91,0 @@ // message |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45694
1080