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

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

      
    
Rootfs path

      
    
Size
629 (629 bytes)
MD5
6ada99e4696aaf878ac5312ced4f479b
SHA1
02b0d1b5d68ff6e8cabda05c1e5a4c9675b10479
SHA256
32e7f67e212b764dd16ac6da9cec60f1b743ea29be48b658d34f43fa5ea9e8f6
SHA512

      
    
SHA1_git
382f6610d29185c5d3167c19aaa78eb6804fc462
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
lte.js | 629 bytes |

var createRelationalOperation = require('./_createRelationalOperation'); /** * Checks if `value` is less than or equal to `other`. * * @static * @memberOf _ * @since 3.9.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if `value` is less than or equal to * `other`, else `false`. * @see _.gte * @example * * _.lte(1, 3); * // => true * * _.lte(3, 3); * // => true * * _.lte(3, 1); * // => false */ var lte = createRelationalOperation(function(value, other) { return value <= other; }); module.exports = lte;
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/lodash@4.17.20 mit JavaScript