UNPKG

@toast-ui/chart

Version:

TOAST UI Application: Chart

5 lines (4 loc) 198 B
import { isUndefined } from "./utils"; export function isExistPlotId(plots, data) { return plots.some(({ id: bandId }) => !isUndefined(bandId) && !isUndefined(data.id) && bandId === data.id); }