Newer
Older
vmk-demo-bot / frontend / node_modules / es5-ext / string / # / contains / shim.js
@eugene-sukhodolskiy eugene-sukhodolskiy 19 days ago 178 bytes init
"use strict";

var indexOf = String.prototype.indexOf;

module.exports = function (searchString /*, position*/) {
	return indexOf.call(this, searchString, arguments[1]) > -1;
};