Bump to v0.8.1.

Former-commit-id: 1b63f03d4a7ca0cdc66e44cd987fddecaf88f9ce
This commit is contained in:
John-David Dalton
2012-10-04 01:40:17 -07:00
parent a0cb8ec124
commit 6e9cbccde6
9 changed files with 175 additions and 189 deletions

View File

@@ -1767,7 +1767,7 @@
var thisArg,
array = ['a'],
callback = function() { thisArg = this; },
useStrict = (function() { return this; }).call(null) === null;
expected = (function() { return this; }).call(null);
var funcs = [
'countBy',
@@ -1809,10 +1809,10 @@
func(array, callback, null);
}
if (useStrict) {
if (expected === null) {
deepEqual(thisArg, null, message);
} else {
equal(thisArg, window, message);
equal(thisArg, expected, message);
}
});
});