Top "Lodash" questions

A modern JavaScript utility library delivering modularity, performance, and extras.

Lo-Dash, difference between array and collection

A glance at the Lo-Dash docs shows that the API falls in to categories of: Arrays, Chaining, Collections, Functions, Objects, …

javascript backbone.js lodash
Module not found: Error: Cannot resolve module '@types/lodash'

I'm stuck and looking for help. I'm not sure where the problem actually is but I hope to find the …

typescript webpack lodash definitelytyped
Underscore debounce vs vanilla Javascript setTimeout

I understand that debounce in Undercore.js returns a function that will postpone its execution until the wait time is …

javascript underscore.js settimeout lodash delayed-execution
Lodash sort collection based on external array

I have an array with keys like so: ['asdf12','39342aa','12399','129asg',...] and a collection which …

javascript arrays collections underscore.js lodash
Why can't I remove item from this Array using slice or lodash remove?

Using slice (In this situation I find the correct item in the Array, attempt slice, but the Array stays exactly …

javascript arrays lodash splice
Debounce computed properties/getters in Vue

I can't seem to debounce (lodash) computed properties or vuex getters. The debounced functions always return undefined. https://jsfiddle.net/…

javascript vue.js lodash vuex
Lodash _.omit function inside map

I'm trying to write a function, that will transform an array of objects. var array = [{ id: 1, name: 'Peter', age: 29, city: …

object lodash arrayobject
ES6 and window / global variables

I'm working with es6 modules. In some of them I use lodash. My question is - is it possible to …

webpack ecmascript-6 lodash vuejs2 vue-loader
lodash.debounce search in react js

I'm trying to debounce a search in react using lodash, debounce. But when ever its run I'm receiving a type …

javascript reactjs lodash debouncing
How can I access iteration index in Ramda.map

I used to write something like _.map(items, (item, index) => {}); with lodash. Usually I don't need index but sometimes …

javascript mapping lodash ramda.js