TypeError: fn.bind is not a function discord.ks code example
Example: typeerror: fn.bind is not a function
V11 - someCollection.find('property', value);
V12 + someCollection.find(element => element.property === value)
Collection#find can only be used with a function rather than a property-value pair as in previous versions.