mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Add instance pass through unit test, and ensure the pre-compile step escapes the "_wrapped" property for Closure Compiler.
Former-commit-id: 4bb8f77bacdafdd6822564c18751310235679476
This commit is contained in:
@@ -91,6 +91,11 @@
|
||||
test('creates a new instance when called without the `new` operator', function() {
|
||||
ok(_() instanceof _);
|
||||
});
|
||||
|
||||
test('should pass through LoDash instances', function() {
|
||||
var wrapped = _([]);
|
||||
equal(_(wrapped), wrapped);
|
||||
});
|
||||
}());
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
Reference in New Issue
Block a user