Tweak wording on _.clone feature note in readme & tweak unit test handling missing _.runInContext.

This commit is contained in:
John-David Dalton
2013-09-29 14:46:52 -07:00
parent 0558495760
commit 5e29e3f1cb
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ The full changelog for this release is available on our [wiki](https://github.co
* [_(…)](http://lodash.com/docs#_) supports intuitive chaining
* [_.at](http://lodash.com/docs#at) for cherry-picking collection values
* [_.bindKey](http://lodash.com/docs#bindKey) for binding [*“lazy”*](http://michaux.ca/articles/lazy-function-definition-pattern) defined methods
* [_.clone](http://lodash.com/docs#clone) supports cloning `Date` & `RegExp` objects
* [_.clone](http://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects
* [_.cloneDeep](http://lodash.com/docs#cloneDeep) for deep cloning arrays & objects
* [_.contains](http://lodash.com/docs#contains) accepts a `fromIndex`
* [_.createCallback](http://lodash.com/docs#createCallback) for extending callbacks in methods & mixins

View File

@@ -4766,7 +4766,7 @@
});
// add a skipped test for `_.runInContext` which is abscent from modularized builds
if (isModularize) {
if (!_.runInContext) {
skipTest();
}
});