1 2 3 4 5 6 7 8 9 10 11 12 13
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) }