Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author8rain1ag <asleeppiano@outlook.com>2020-02-05 00:13:18 +0300
committer8rain1ag <asleeppiano@outlook.com>2020-02-05 00:13:18 +0300
commit5d526501aba7b338a6ff6ac64c21b3bf1d38db30 (patch)
tree119b31ebb3c0fde7fb7da5d17e4e1f9f47a999bd /assets/node_modules/lodash/subtract.js
Initial commit
Diffstat (limited to 'assets/node_modules/lodash/subtract.js')
-rw-r--r--assets/node_modules/lodash/subtract.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/assets/node_modules/lodash/subtract.js b/assets/node_modules/lodash/subtract.js
new file mode 100644
index 0000000..6720778
--- /dev/null
+++ b/assets/node_modules/lodash/subtract.js
@@ -0,0 +1,22 @@
+var createMathOperation = require('./_createMathOperation');
+
+/**
+ * Subtract two numbers.
+ *
+ * @static
+ * @memberOf _
+ * @since 4.0.0
+ * @category Math
+ * @param {number} minuend The first number in a subtraction.
+ * @param {number} subtrahend The second number in a subtraction.
+ * @returns {number} Returns the difference.
+ * @example
+ *
+ * _.subtract(6, 4);
+ * // => 2
+ */
+var subtract = createMathOperation(function(minuend, subtrahend) {
+ return minuend - subtrahend;
+}, 0);
+
+module.exports = subtract;