1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Use Boolean for filters (#10066)

This commit is contained in:
David Walsh 2020-12-14 11:03:59 -06:00 committed by GitHub
parent 8f40d03299
commit 9a1548368f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 11 deletions

View File

@ -249,9 +249,7 @@ export default class IncomingTransactionsController {
})
const incomingTxs = remoteTxs.filter(
(tx) =>
tx.txParams.to &&
tx.txParams.to.toLowerCase() === address.toLowerCase(),
(tx) => tx.txParams?.to?.toLowerCase() === address.toLowerCase(),
)
incomingTxs.sort((a, b) => (a.time < b.time ? -1 : 1))

View File

@ -321,7 +321,7 @@ function calcCustomGasLimit(customGasLimitInHex) {
}
function sumHexWEIsToRenderableEth(hexWEIs) {
const hexWEIsSum = hexWEIs.filter((n) => n).reduce(addHexes)
const hexWEIsSum = hexWEIs.filter(Boolean).reduce(addHexes)
return formatETHFee(
getValueFromWeiHex({
value: hexWEIsSum,

View File

@ -21,7 +21,7 @@ export default class MultipleNotifications extends PureComponent {
const { showAll } = this.state
const { children, classNames } = this.props
const childrenToRender = children.filter((child) => child)
const childrenToRender = children.filter(Boolean)
if (childrenToRender.length === 0) {
return null
}

View File

@ -67,7 +67,7 @@ export default class PageContainer extends PureComponent {
renderActiveTabContent() {
const { tabsComponent } = this.props
let { children } = tabsComponent.props
children = children.filter((child) => child)
children = children.filter(Boolean)
const { activeTabIndex } = this.state
return children[activeTabIndex]

View File

@ -183,7 +183,7 @@ export function addHexes(aHexWEI, bHexWEI) {
}
export function sumHexWEIs(hexWEIs) {
return hexWEIs.filter((n) => n).reduce(addHexes)
return hexWEIs.filter(Boolean).reduce(addHexes)
}
export function sumHexWEIsToUnformattedFiat(

View File

@ -145,9 +145,7 @@ export function useTokensToSearch({
return new BigNumber(rawFiat || 0).gt(secondRawFiat || 0) ? -1 : 1
},
)
tokensToSearchBuckets.top = tokensToSearchBuckets.top.filter(
(token) => token,
)
tokensToSearchBuckets.top = tokensToSearchBuckets.top.filter(Boolean)
return [
...tokensToSearchBuckets.owned,
...tokensToSearchBuckets.top,

View File

@ -159,7 +159,7 @@ export default connect(
)(SwapsGasCustomizationModalComponent)
function sumHexWEIsToRenderableEth(hexWEIs) {
const hexWEIsSum = hexWEIs.filter((n) => n).reduce(addHexes)
const hexWEIsSum = hexWEIs.filter(Boolean).reduce(addHexes)
return formatETHFee(
getValueFromWeiHex({
value: hexWEIsSum,