chore: using includes instead of indexOf (#8261)

This commit is contained in:
neverland 2021-03-04 11:07:54 +08:00 committed by GitHub
parent 831091182a
commit 9fd71923f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 31 additions and 31 deletions

View File

@ -124,7 +124,7 @@ export default createComponent({
}
// hide border when color is linear-gradient
if (color.indexOf('gradient') !== -1) {
if (color.includes('gradient')) {
style.border = 0;
} else {
style.borderColor = color;

View File

@ -252,7 +252,7 @@ export default createComponent({
const values = state.tabs.map(
(tab) => tab.selectedOption?.[valueKey]
);
if (values.indexOf(value) !== -1) {
if (values.includes(value)) {
return;
}
}

View File

@ -36,7 +36,7 @@ export default createComponent({
if (checked) {
const overlimit = max && value.length >= max;
if (!overlimit && value.indexOf(name) === -1) {
if (!overlimit && !value.includes(name)) {
value.push(name);
if (props.bindGroup) {

View File

@ -73,7 +73,7 @@ export default createComponent({
return accordion
? modelValue === name
: (modelValue as Array<number | string>).indexOf(name) !== -1;
: (modelValue as Array<number | string>).includes(name);
};
linkChildren({ toggle, isExpanded });

View File

@ -5,36 +5,36 @@ export function parseFormat(format: string, currentTime: CurrentTime): string {
const { days } = currentTime;
let { hours, minutes, seconds, milliseconds } = currentTime;
if (format.indexOf('DD') === -1) {
hours += days * 24;
} else {
if (format.includes('DD')) {
format = format.replace('DD', padZero(days));
} else {
hours += days * 24;
}
if (format.indexOf('HH') === -1) {
minutes += hours * 60;
} else {
if (format.includes('HH')) {
format = format.replace('HH', padZero(hours));
} else {
minutes += hours * 60;
}
if (format.indexOf('mm') === -1) {
seconds += minutes * 60;
} else {
if (format.includes('mm')) {
format = format.replace('mm', padZero(minutes));
}
if (format.indexOf('ss') === -1) {
milliseconds += seconds * 1000;
} else {
format = format.replace('ss', padZero(seconds));
seconds += minutes * 60;
}
if (format.indexOf('S') !== -1) {
if (format.includes('ss')) {
format = format.replace('ss', padZero(seconds));
} else {
milliseconds += seconds * 1000;
}
if (format.includes('S')) {
const ms = padZero(milliseconds, 3);
if (format.indexOf('SSS') !== -1) {
if (format.includes('SSS')) {
format = format.replace('SSS', ms);
} else if (format.indexOf('SS') !== -1) {
} else if (format.includes('SS')) {
format = format.replace('SS', ms.slice(0, 2));
} else {
format = format.replace('S', ms.charAt(0));

View File

@ -27,7 +27,7 @@ export default createComponent({
return Network;
}
if (PRESET_IMAGES.indexOf(image) !== -1) {
if (PRESET_IMAGES.includes(image)) {
image = `https://img01.yzcdn.cn/vant/empty-image-${image}.png`;
}

View File

@ -50,7 +50,7 @@ export default createComponent({
const getFieldsByNames = (names?: string[]) => {
if (names) {
return children.filter((field) => names.indexOf(field.name) !== -1);
return children.filter((field) => names.includes(field.name));
}
return children;
};

View File

@ -5,7 +5,7 @@ import Badge from '../badge';
const [createComponent, bem] = createNamespace('icon');
function isImage(name?: string) {
return name ? name.indexOf('/') !== -1 : false;
return name ? name.includes('/') : false;
}
export default createComponent({

View File

@ -121,7 +121,7 @@ export default createComponent({
const nodes = [];
if (TEXT_STATUS.indexOf(status) !== -1) {
if (TEXT_STATUS.includes(status)) {
nodes.push(<div class={bem('text')}>{getStatusText()}</div>);
}
if (status === 'loading') {

View File

@ -34,7 +34,7 @@ const popupKeys = [
] as const;
function getIconURL(icon: string) {
if (PRESET_ICONS.indexOf(icon) !== -1) {
if (PRESET_ICONS.includes(icon)) {
return `https://img01.yzcdn.cn/vant/share-sheet-${icon}.png`;
}
return icon;

View File

@ -190,7 +190,7 @@ export default createComponent({
let formatted = formatNumber(String(value), !props.integer);
// limit max decimal length
if (isDef(decimalLength) && formatted.indexOf('.') !== -1) {
if (isDef(decimalLength) && formatted.includes('.')) {
const pair = formatted.split('.');
formatted = `${pair[0]}.${pair[1].slice(0, +decimalLength)}`;
}

View File

@ -65,7 +65,7 @@ export default createComponent({
setup(props, { emit, slots }) {
const isActiveItem = (id: number | string) => {
return Array.isArray(props.activeId)
? props.activeId.indexOf(id) !== -1
? props.activeId.includes(id)
: props.activeId === id;
};

View File

@ -66,13 +66,13 @@ export function unitToPx(value: string | number): number {
}
if (inBrowser) {
if (value.indexOf('rem') !== -1) {
if (value.includes('rem')) {
return convertRem(value);
}
if (value.indexOf('vw') !== -1) {
if (value.includes('vw')) {
return convertVw(value);
}
if (value.indexOf('vh') !== -1) {
if (value.includes('vh')) {
return convertVh(value);
}
}