Skip to content

Instantly share code, notes, and snippets.

@steppefox
Created September 3, 2013 05:42
Show Gist options
  • Save steppefox/6420069 to your computer and use it in GitHub Desktop.
Save steppefox/6420069 to your computer and use it in GitHub Desktop.
strpos analog in js
// ~strpos вхождение строки в строку
var strpos = function ( haystack, needle, offset){
// + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
var i = haystack.indexOf( needle, offset ); // returns -1
return i >= 0 ? i : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment