Skip to content

Commit 2575d42

Browse files
committed
Merge branch 'gh-pages' of github.com:konklone/json into gh-pages
2 parents d32e0a2 + d3b458b commit 2575d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/site.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function parse_object(obj, path) {
4343
// otherwise, just find the first one
4444
function arrayFrom(json) {
4545
var queue = [], next = json;
46-
while (next) {
46+
while (next !== undefined) {
4747
if ($.type(next) == "array")
4848
return next;
4949
for (var key in next)

0 commit comments

Comments
 (0)