Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kvz committed Jan 17, 2014
1 parent b812a40 commit 492658c
Show file tree
Hide file tree
Showing 6 changed files with 228 additions and 228 deletions.
2 changes: 1 addition & 1 deletion functions/array/array_merge.js
Expand Up @@ -10,7 +10,7 @@ function array_merge() {
// * returns 1: {"color": "green", 0: 2, 1: 4, 2: "a", 3: "b", "shape": "trapezoid", 4: 4}
// * example 2: arr1 = []
// * example 2: arr2 = {1: "data"}
// * example 2: array_merge(arr1, arr2)
// * example 2: array_merge(arr1, arr2)
// * returns 2: {0: "data"}
var args = Array.prototype.slice.call(arguments),
argl = args.length,
Expand Down
4 changes: 2 additions & 2 deletions functions/datetime/date_parse.js
Expand Up @@ -10,8 +10,8 @@ function date_parse(date) {
// END REDUNDANT

var ts,
warningsOffset = this.php_js.warnings ? this.php_js.warnings.length : null,
errorsOffset = this.php_js.errors ? this.php_js.errors.length : null;
warningsOffset = this.php_js.warnings ? this.php_js.warnings.length : null,
errorsOffset = this.php_js.errors ? this.php_js.errors.length : null;

try {
this.php_js.date_parse_state = true; // Allow strtotime to return a decimal (which it normally does not)
Expand Down

0 comments on commit 492658c

Please sign in to comment.