You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
527 B
18 lines
527 B
2 years ago
|
import { isScalar } from '../nodes/Node.js';
|
||
|
|
||
|
function mapIncludes(ctx, items, search) {
|
||
|
const { uniqueKeys } = ctx.options;
|
||
|
if (uniqueKeys === false)
|
||
|
return false;
|
||
|
const isEqual = typeof uniqueKeys === 'function'
|
||
|
? uniqueKeys
|
||
|
: (a, b) => a === b ||
|
||
|
(isScalar(a) &&
|
||
|
isScalar(b) &&
|
||
|
a.value === b.value &&
|
||
|
!(a.value === '<<' && ctx.schema.merge));
|
||
|
return items.some(pair => isEqual(pair.key, search));
|
||
|
}
|
||
|
|
||
|
export { mapIncludes };
|