summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/stripos.js
blob: 839350ea5cdc773bc4e75df90bf31318cc8af3a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';

module.exports = function stripos(fHaystack, fNeedle, fOffset) {
  //  discuss at: http://locutus.io/php/stripos/
  // original by: Martijn Wieringa
  //  revised by: Onno Marsman (https://twitter.com/onnomarsman)
  //   example 1: stripos('ABC', 'a')
  //   returns 1: 0

  var haystack = (fHaystack + '').toLowerCase();
  var needle = (fNeedle + '').toLowerCase();
  var index = 0;

  if ((index = haystack.indexOf(needle, fOffset)) !== -1) {
    return index;
  }

  return false;
};
//# sourceMappingURL=stripos.js.map