From 0c0db3babb4c630a9950a0ec0de1d2d640c1495f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 18 Nov 2012 15:38:44 -0800 Subject: [PATCH] Remove `deprecated` indicators from `_.isFinite`, `_.isNaN`, `_.isNull`, `_.isUndefined`, and `_.result` docs. [ci skip] Former-commit-id: 597001cfe5ef71d40b3254344eb5dbbe9905430a --- README.md | 2 +- lodash.js | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 0f81080cb..5b9b59244 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ require({ * Added the build commands used to custom build copyright/license headers * Added `_.assign` * Ensured the `underscore` build of `_.find` returns the first, not last, matched value - * Ensured `_defaults`, `_.extends`, and `_.merge` works with `_.reduce` + * Ensured `_defaults`, `_.extends`, and `_.merge` work with `_.reduce` * Made Lo-Dash’s `npm` package installation work with more system configurations * Made `_.extend` an alias of `_.assign` * Optimized `_.contains`, `_.defaults`, `_.extend`, and `_.filter` diff --git a/lodash.js b/lodash.js index 3813d2af2..303dc4e8c 100644 --- a/lodash.js +++ b/lodash.js @@ -1339,7 +1339,6 @@ * Note: This is not the same as native `isFinite`, which will return true for * booleans and empty strings. See http://es5.github.com/#x15.1.2.5. * - * @deprecated * @static * @memberOf _ * @category Objects @@ -1423,7 +1422,6 @@ * Note: This is not the same as native `isNaN`, which will return true for * `undefined` and other values. See http://es5.github.com/#x15.1.2.4. * - * @deprecated * @static * @memberOf _ * @category Objects @@ -1452,7 +1450,6 @@ /** * Checks if `value` is `null`. * - * @deprecated * @static * @memberOf _ * @category Objects @@ -1560,7 +1557,6 @@ /** * Checks if `value` is `undefined`. * - * @deprecated * @static * @memberOf _ * @category Objects @@ -3701,7 +3697,6 @@ * it will be invoked and its result returned, else the property value is * returned. If `object` is falsey, then `null` is returned. * - * @deprecated * @static * @memberOf _ * @category Utilities