some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / nth.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/nth.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/nth.js
deleted file mode 100644 (file)
index 8a344de..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-var baseNth = require('./_baseNth'),
-    toInteger = require('./toInteger');
-
-/**
- * Gets the element at index `n` of `array`. If `n` is negative, the nth
- * element from the end is returned.
- *
- * @static
- * @memberOf _
- * @since 4.11.0
- * @category Array
- * @param {Array} array The array to query.
- * @param {number} [n=0] The index of the element to return.
- * @returns {*} Returns the nth element of `array`.
- * @example
- *
- * var array = ['a', 'b', 'c', 'd'];
- *
- * _.nth(array, 1);
- * // => 'b'
- *
- * _.nth(array, -2);
- * // => 'c';
- */
-function nth(array, n) {
-  return (array && array.length) ? baseNth(array, toInteger(n)) : undefined;
-}
-
-module.exports = nth;