mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
14 lines
296 B
JavaScript
14 lines
296 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)
|
||
|
}
|