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

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

      
    
Rootfs path

      
    
Size
929 (929 bytes)
MD5
93571025bd367fedf69f60d7972a6c99
SHA1
6a060f1b26a6be2a99c48eb56d104c4684b9bb30
SHA256
3b2d6539f99fa23f957cd16eaed54b2f46202e45872c9d26c41bc0a30c612449
SHA512

      
    
SHA1_git
4aedf58af56c81808e8a9e6baf66262e4e638804
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
forInRight.js | 929 bytes |

var baseForRight = require('./_baseForRight'), castFunction = require('./_castFunction'), keysIn = require('./keysIn'); /** * This method is like `_.forIn` except that it iterates over properties of * `object` in the opposite order. * * @static * @memberOf _ * @since 2.0.0 * @category Object * @param {Object} object The object to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @returns {Object} Returns `object`. * @see _.forIn * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.forInRight(new Foo, function(value, key) { * console.log(key); * }); * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. */ function forInRight(object, iteratee) { return object == null ? object : baseForRight(object, castFunction(iteratee), keysIn); } module.exports = forInRight;
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/lodash@4.17.20 mit JavaScript