UNPKG

expect

Version:
12 lines (10 loc) 279 B
/** * Returns true if the given string contains the value, false otherwise. */ "use strict"; exports.__esModule = true; function stringContains(string, value) { return string.indexOf(value) !== -1; } exports["default"] = stringContains; module.exports = exports["default"];