增加晶全app静态页面
This commit is contained in:
18
node_modules/es5-ext/string/#/ends-with/shim.js
generated
vendored
Normal file
18
node_modules/es5-ext/string/#/ends-with/shim.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
|
||||
var toInteger = require("../../../number/to-integer")
|
||||
, value = require("../../../object/valid-value")
|
||||
, isValue = require("../../../object/is-value")
|
||||
, min = Math.min
|
||||
, max = Math.max;
|
||||
|
||||
module.exports = function (searchString /*, endPosition*/) {
|
||||
var self, start, endPos;
|
||||
self = String(value(this));
|
||||
searchString = String(searchString);
|
||||
endPos = arguments[1];
|
||||
start =
|
||||
(isValue(endPos) ? min(max(toInteger(endPos), 0), self.length) : self.length) -
|
||||
searchString.length;
|
||||
return start < 0 ? false : self.indexOf(searchString, start) === start;
|
||||
};
|
Reference in New Issue
Block a user