mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
import R from 'ramda'
|
|
|
|
export function checkExistingAddresses (address, tokenList = []) {
|
|
if (!address) {
|
|
return false
|
|
}
|
|
|
|
const matchesAddress = (existingToken) => {
|
|
return existingToken.address.toLowerCase() === address.toLowerCase()
|
|
}
|
|
|
|
return R.any(matchesAddress)(tokenList)
|
|
}
|