summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/string/#/starts-with/shim.js
blob: aa5aaf4145ea58e0413bc814c7e27336839d2058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

var value     = require('../../../object/valid-value')
  , toInteger = require('../../../number/to-integer')

  , max = Math.max, min = Math.min;

module.exports = function (searchString/*, position*/) {
	var start, self = String(value(this));
	start = min(max(toInteger(arguments[1]), 0), self.length);
	return (self.indexOf(searchString, start) === start);
};