UNPKG

cspell-lib

Version:

A library of useful functions used across various cspell tools.

6 lines 247 B
import { getVirtualFS } from '../fileSystem.js'; export async function findUpFromUrl(name, from, options = {}) { const fs = options.fs ?? getVirtualFS().fs; return fs.findUp(name, from, options); } //# sourceMappingURL=findUpFromUrl.js.map