{"library":"lodash","title":"lodash","description":"lodash is a JavaScript utility library providing consistent, cross-environment, performance-optimized, and modular utilities for common programming tasks. It simplifies working with arrays, objects, numbers, strings, and functions, offering a wide range of helpers for iteration, manipulation, and type checking. The current stable version is 4.18.1, with frequent updates for bug fixes and security patches, typically released as minor or patch versions.","language":"javascript","status":"active","last_verified":"Sat Apr 18","install":{"commands":["npm install lodash"],"cli":null},"imports":["import _ from 'lodash';"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import _ from 'lodash';\n\nconst users = [\n  { 'user': 'barney', 'age': 36, 'active': true },\n  { 'user': 'fred',   'age': 40, 'active': false }\n];\n\nconst activeUsers = _.filter(users, function(o) { return o.active; });\n\nconsole.log(activeUsers);\n// Expected output: [ { user: 'barney', age: 36, active: true } ]","lang":"typescript","description":"Demonstrates importing the full lodash library and using the `_.filter` method to process an array of objects.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}