lodash APIs
- cloneDeep
- get
- isEqual
- isEmpty
- debounce
- merge
- uniq
- omit
- isString
- isArray
- pick
- sortBy
- groupBy
- flatten
- set
- find
- orderBy
- mapValues
- isObject
- last
- isNil
- isNumber
- range
- chunk
- throttle
- filter
- uniqBy
- difference
- pickBy
- noop
- capitalize
- uniqueId
- has
- isUndefined
- map
- camelCase
- isFunction
- kebabCase
- intersection
- random
- includes
- isPlainObject
- compact
- Dictionary
- findIndex
- keyBy
- forEach
- trim
- clamp
- identity
- remove
- keys
- isNull
- times
- startCase
- first
- values
- mapKeys
- sumBy
- max
- reduce
- some
- zip
- every
- memoize
- clone
- countBy
- concat
- snakeCase
- assign
- isBoolean
- uniqWith
- omitBy
- without
- minBy
- head
- maxBy
- min
- upperFirst
- escapeRegExp
- reverse
- sample
- shuffle
- defaults
- inRange
- flattenDeep
- take
- union
- sum
- mergeWith
- castArray
- replace
- flatMap
- reject
- zipObject
- template
- isNaN
- mean
- size
- findLast
- unset
- partition
- round
- fromPairs
- floor
- toPairs
- indexOf
- toString
- sampleSize
- differenceBy
- update
- chain
- startsWith
- xor
- pull
- DebouncedFunc
- defaultsDeep
- split
- findKey
- unescape
- partial
- toNumber
- invert
- each
- differenceWith
- endsWith
- slice
- isDate
- unionBy
- findLastIndex
- join
- isInteger
- delay
- isObjectLike
- padStart
- result
- isError
- extend
- cloneDeepWith
- upperCase
- trimStart
- constant
- matches
- lowerCase
- forIn
- lowerFirst
- once
- transform
- isMatch
- escape
- isEqualWith
- zipWith
- isRegExp
- entries
- sortedIndexBy
- dropWhile
- takeWhile
- isElement
- forEachRight
- ReplaceFunction
- TemplateExecutor
- keysIn
- IsEqualCustomizer
- isTypedArray
- cond
- stubTrue
- toUpper
- isMap
- isSet
- meanBy
- rangeRight
- repeat
- trimEnd
- now
- nth
- pullAt
- toPath
- eq
- lt
- lte
- gt
- gte
- pullAllBy
- pullAll
- toLower
- fill
- ceil
- flatMapDeep
- CloneDeepWithCustomizer
- negate
- takeRightWhile
- invoke
- tap
- intersectionWith
- truncate
- Collection
- bind
- curry
- partialRight
- sortedUniq
- sortedIndexOf
- Object
- drop
- _
Other Related APIs
lodash#matches TypeScript Examples
The following examples show how to use
lodash#matches.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: corner-cell.ts From S2 with MIT License | 6 votes |
protected getIconPosition(): Point {
const textCfg = this.textShapes?.[0]?.cfg.attrs;
const { textBaseline, textAlign } = this.getTextStyle();
const { size, margin } = this.getStyle().icon;
const iconX =
textCfg?.x +
cond([
[matches('center'), constant(this.actualTextWidth / 2)],
[matches('right'), constant(0)],
[stubTrue, constant(this.actualTextWidth)],
])(textAlign) +
margin.left;
const iconY = getVerticalPosition(
this.getContentArea(),
textBaseline,
size,
);
return { x: iconX, y: iconY };
}
Example #2
Source File: custom-matchers.ts From js-client with MIT License | 6 votes |
myCustomMatchers: jasmine.CustomMatcherFactories = {
toPartiallyEqual: () => ({
compare: (actual: any, expected: any) => {
const pass = matches(expected)(actual);
const result: jasmine.CustomMatcherResult = { pass };
if (pass == false) {
const serialize = (v: any): string => JSON.stringify(v, null, ' ');
result.message = `Expected:\n${serialize(actual)}\n\nTo partially equal:\n${serialize(expected)}`;
}
return result;
},
}),
}
Example #3
Source File: keep-data-range-test.spec.ts From js-client with MIT License | 5 votes |
expectStatsFilter = async (stats$: Observable<SearchStats>, filter: SearchFilter): Promise<void> => {
const matchesFilter = matches(filter);
const statsP = firstValueFrom(stats$.pipe(skipWhile(x => matchesFilter(x.filter) === false)));
await expectAsync(statsP)
.withContext(`Expecting the filter to be ${JSON.stringify(filter)}`)
.toBeResolved();
}