Flatlogic Bot ca3a32f23e V 4
2026-02-16 06:55:36 +00:00

47 lines
1.5 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.arrayIncludes = arrayIncludes;
exports.endsWith = endsWith;
exports.isRealNaN = isRealNaN;
exports.startsWith = startsWith;
exports.stringIncludes = stringIncludes;
/*
We don't want to include babel-polyfill in our project.
- Library authors should be using babel-runtime for non-global polyfilling
- Adding babel-polyfill/-runtime increases bundle size significantly
We will include our polyfill instance methods as regular functions.
*/
function startsWith(str, searchString, position) {
return str.substr(position || 0, searchString.length) === searchString;
}
function endsWith(str, searchString, position) {
var index = (position || str.length) - searchString.length;
var lastIndex = str.lastIndexOf(searchString, index);
return lastIndex !== -1 && lastIndex === index;
}
function stringIncludes(str, searchString, position) {
return str.indexOf(searchString, position || 0) !== -1;
}
function isRealNaN(x) {
return typeof x === 'number' && isNaN(x);
}
function arrayIncludes(array, searchElement, position) {
var len = array.length;
if (len === 0) return false;
var lookupIndex = position | 0;
var isNaNElement = isRealNaN(searchElement);
var searchIndex = lookupIndex >= 0 ? lookupIndex : len + lookupIndex;
while (searchIndex < len) {
var element = array[searchIndex++];
if (element === searchElement) return true;
if (isNaNElement && isRealNaN(element)) return true;
}
return false;
}
//# sourceMappingURL=compat.js.map