UNPKG

@in-browser/fdir

Version:

The fastest directory crawler & globbing alternative to glob, fast-glob, & tiny-glob. Crawls 1m files in < 1s

9 lines (8 loc) 251 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sync = sync; const walker_1 = require("./walker"); function sync(root, options) { const walker = new walker_1.Walker(root, options); return walker.start(); }