Skip to content

Commit

Permalink
Bump version, remove npm package, update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbtn committed Feb 13, 2017
1 parent 905e410 commit 2d6e412
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1,3 +1,6 @@
# npm packages
/*.tgz

.c9
# Logs
logs
Expand Down
6 changes: 3 additions & 3 deletions dist/excel-formula.js
Expand Up @@ -105,9 +105,9 @@
}
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own.
var key;
for (key in obj) { }
return key === undefined || hasOwnProperty.call(obj, key);
var lastKey;
for (key in obj) { lastKey = key; }
return lastKey === undefined || hasOwnProperty.call(obj, lastKey);
};

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/excel-formula.min.js

Large diffs are not rendered by default.

Binary file removed excel-formula-1.2.3.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Josh Bennett (http://joshbennett.me/)",
"name": "excel-formula",
"description": "Methods to beautify an excel formula and convert it to JavaScript or C#",
"version": "1.2.4",
"version": "1.2.5",
"homepage": "http://excelformulabeautifier.com/",
"contributors": [
{
Expand Down

0 comments on commit 2d6e412

Please sign in to comment.