UNPKG

expect

Version:
9 lines (7 loc) 193 B
/** * Returns true if the given string contains the value, false otherwise. */ function stringContains(string, value) { return string.indexOf(value) !== -1 } export default stringContains