demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/lodash-4.17.20/min.js

Path
demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/lodash-4.17.20/min.js
Status
scanned
Type
file
Name
min.js
Extension
.js
Programming language
JavaScript
Mime type
text/plain
File type
ASCII text
Tag

      
    
Rootfs path

      
    
Size
614 (614 bytes)
MD5
b3e83e44aa8a4a6215b397c6b5be9df2
SHA1
0ca11cbe1894931dd09246e001badc22eb734887
SHA256
1f4ab3cde3a13dd942073c3356ddec332980261f95e6250a15e9ebe8343472bb
SHA512

      
    
SHA1_git
428f571d741001e81ecc8eb621726f9573cd5a91
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
min.js | 614 bytes |

var baseExtremum = require('./_baseExtremum'), baseLt = require('./_baseLt'), identity = require('./identity'); /** * Computes the minimum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0 * @memberOf _ * @category Math * @param {Array} array The array to iterate over. * @returns {*} Returns the minimum value. * @example * * _.min([4, 2, 8, 6]); * // => 2 * * _.min([]); * // => undefined */ function min(array) { return (array && array.length) ? baseExtremum(array, identity, baseLt) : undefined; } module.exports = min;
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/lodash@4.17.20 mit JavaScript