export default async function find(patterns, paths, options) {
    for await (const path of paths) {
        if (await findOne(patterns, path, options)) return true;
    }