matchesOneOf: (val, arr) => {
    for (let i = 0; i < arr.length; i += 1) {
      if (val.indexOf(arr[i]) !== -1) {
        return true;
      }