aboutsummaryrefslogtreecommitdiff
path: root/tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2017-12-22 17:00:24 +0100
committerMichaël Zasso <targos@protonmail.com>2018-01-11 09:50:47 +0100
commitb043a70201587920292512314b8815d33f62083f (patch)
treef9ffbb1636208e2556a0bee92977fc8c620ae789 /tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js
parent7a52c51e811cd59db0d2b1b6d6b8b2e7f917d65c (diff)
downloadandroid-node-v8-b043a70201587920292512314b8815d33f62083f.tar.gz
android-node-v8-b043a70201587920292512314b8815d33f62083f.tar.bz2
android-node-v8-b043a70201587920292512314b8815d33f62083f.zip
tools: add babel-eslint
Create tools/update-babel-eslint.sh script and execute it to do the first installation of the package. Update tools/license-builder.sh and execute it to add babel-eslint's license to our LICENSE file. PR-URL: https://github.com/nodejs/node/pull/17820 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js')
-rw-r--r--tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js b/tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js
new file mode 100644
index 0000000000..9225eeb363
--- /dev/null
+++ b/tools/node_modules/babel-eslint/node_modules/lodash/sortedLastIndexBy.js
@@ -0,0 +1,33 @@
+var baseIteratee = require('./_baseIteratee'),
+ baseSortedIndexBy = require('./_baseSortedIndexBy');
+
+/**
+ * This method is like `_.sortedLastIndex` except that it accepts `iteratee`
+ * which is invoked for `value` and each element of `array` to compute their
+ * sort ranking. The iteratee is invoked with one argument: (value).
+ *
+ * @static
+ * @memberOf _
+ * @since 4.0.0
+ * @category Array
+ * @param {Array} array The sorted array to inspect.
+ * @param {*} value The value to evaluate.
+ * @param {Function} [iteratee=_.identity] The iteratee invoked per element.
+ * @returns {number} Returns the index at which `value` should be inserted
+ * into `array`.
+ * @example
+ *
+ * var objects = [{ 'x': 4 }, { 'x': 5 }];
+ *
+ * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });
+ * // => 1
+ *
+ * // The `_.property` iteratee shorthand.
+ * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x');
+ * // => 1
+ */
+function sortedLastIndexBy(array, value, iteratee) {
+ return baseSortedIndexBy(array, value, baseIteratee(iteratee, 2), true);
+}
+
+module.exports = sortedLastIndexBy;