Use lodashStable.escape in more places.

This commit is contained in:
John-David Dalton
2016-09-20 07:49:59 -07:00
parent ec8e279235
commit b25a86f352

View File

@@ -25142,7 +25142,7 @@
QUnit.test('should create a wrapped function', function(assert) {
assert.expect(1);
var p = _.wrap(_.escape, function(func, text) {
var p = _.wrap(lodashStable.escape, function(func, text) {
return '<p>' + func(text) + '</p>';
});
@@ -25179,7 +25179,7 @@
QUnit.test('should use `this` binding of function', function(assert) {
assert.expect(1);
var p = _.wrap(_.escape, function(func) {
var p = _.wrap(lodashStable.escape, function(func) {
return '<p>' + func(this.text) + '</p>';
});