Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisTM committed Jun 3, 2017
1 parent 14ed4af commit dec0bc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var path = require('path'),
} else if (Array.isArray(object)) {
_.each(object, function (obj, index) {
return stringify(obj, '', index);
}); //console.log(obj, b));//
});
} else if (object instanceof Object) {
if (isNotFirst) configuration.push("");
_.each(object, function (value, key) {
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const path = require('path'),
if (typeof object === 'string') {
configuration.push(prepend + object)
} else if (Array.isArray(object)) {
_.each(object, (obj, index) => stringify(obj, '', index));//console.log(obj, b));//
_.each(object, (obj, index) => stringify(obj, '', index));
} else if (object instanceof Object){
if (isNotFirst) configuration.push("")
_.each(object, (value, key) => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "humans-generator",
"version": "2.1.0",
"version": "2.1.1",
"description": "Humans.txt generator for Node.js",
"main": "index.js",
"repository": {
Expand Down

0 comments on commit dec0bc3

Please sign in to comment.