title="Sat, 16 Sep 2023 07:03:00 UTC">2 anos atrás supports-preserve-symlinks-flag 30f7226d9a first commit 2 anos atrás tailwind-color-palette 30f7226d9a first commit 2 anos atrás tailwindcss 30f7226d9a first commit 2 anos atrás thenify 30f7226d9a first commit 2 anos atrás thenify-all 30f7226d9a first commit 2 anos atrás to-regex-range 30f7226d9a first commit 2 anos atrás tr46 30f7226d9a first commit 2 anos atrás ts-interface-checker 30f7226d9a first commit 2 anos atrás uglify-js 30f7226d9a first commit 2 anos atrás underscore 30f7226d9a first commit 2 anos atrás upper-case 30f7226d9a first commit 2 anos atrás util-deprecate 30f7226d9a first commit 2 anos atrás valid-data-url 30f7226d9a first commit 2 anos atrás web-resource-inliner 30f7226d9a first commit 2 anos atrás webidl-conversions 30f7226d9a first commit 2 anos atrás whatwg-url 30f7226d9a first commit 2 anos atrás wrap-ansi 30f7226d9a first commit 2 anos atrás wrappy 30f7226d9a first commit 2 anos atrás y18n 30f7226d9a first commit 2 anos atrás yallist 30f7226d9a first commit 2 anos atrás yaml 30f7226d9a first commit 2 anos atrás yargs 30f7226d9a first commit 2 anos atrás yargs-parser 30f7226d9a first commit 2 anos atrás .yarn-integrity 30f7226d9a first commit 2 anos atrás tum/network_report_server - Gogs: Simplico Git Service

説明なし

subtract.js 511B

1234567891011121314151617181920212223
  1. var createMathOperation = require('./_createMathOperation');
  2. /**
  3. * Subtract two numbers.
  4. *
  5. * @static
  6. * @memberOf _
  7. * @since 4.0.0
  8. * @category Math
  9. * @param {number} minuend The first number in a subtraction.
  10. * @param {number} subtrahend The second number in a subtraction.
  11. * @returns {number} Returns the difference.
  12. * @example
  13. *
  14. * _.subtract(6, 4);
  15. * // => 2
  16. */
  17. var subtract = createMathOperation(function(minuend, subtrahend) {
  18. return minuend - subtrahend;
  19. }, 0);
  20. module.exports = subtract;