OpenStreetMap-Service/node_modules/validator/es/lib/util/includesString.js

4 lines
106 B
JavaScript
Raw Permalink Normal View History

2026-03-26 23:38:21 +08:00
var includes = function includes(str, val) {
return str.indexOf(val) !== -1;
};
export default includes;