pinafore/src/routes/_utils/lodash-lite.js
Nolan Lawson 3209d934e8
fix: tweak autocomplete behavior (#1570)
tweak the hashtag sort algorithm
fix issue where wrong results shown when offline or on slow network
refactor RequestThrottler
2019-10-13 08:08:06 -07:00

38 lines
741 B
JavaScript

// Some functions from Lodash that are a bit heavyweight and which
// we can just do in idiomatic ES2015+
export function get (obj, keys, defaultValue) {
for (const key of keys) {
if (obj && key in obj) {
obj = obj[key]
} else {
return defaultValue
}
}
return obj
}
export function pickBy (obj, predicate) {
const res = {}
for (const [key, value] of Object.entries(obj)) {
if (predicate(value, key)) {
res[key] = value
}
}
return res
}
export function padStart (string, length, chars) {
while (string.length < length) {
string = chars + string
}
return string
}
export function sum (list) {
let total = 0
for (const item of list) {
total += item
}
return total
}