python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Ramda JS - Pass optional argument to the second function of a pipe
I am trying to refactor this code:
async function getUserDataByUsername(username, cached = true) {
const usernameRef = firestore
.collection("usernames")
.doc(username.toLowerCase(...

Raul
Votes: 0
Answers: 2
Sort array from object based on a property and return the sorted initial object
I have the following object
{
"object": "list",
"url": "/v1/prices",
"has_more": false,
"data": [
{
"id": "...
Patrick Stanciu
Votes: 0
Answers: 3
How do you keep the every kth element of a list in Ramda?
How do you filter out every kth element of a list with Ramda?
input = [1, 2, 3, 4, 5, 6, 7, 8, 9]
output = keepKth(input, 3)
output = [1, 4, 7]
nickponline
Votes: 0
Answers: 4
Ramda - how to get nested array values
I am trying to get values from nested arrays using Ramda. I have multiple groups like in the example below. I need to get all children from all sections and all childrenWithoutSections in one array of...
omygoodness
Votes: 0
Answers: 2