Blame view

node_modules/es5-ext/string/#/starts-with/shim.js 375 Bytes
aaac7fed   liuqimichale   add
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;
  };