soenkekluth / glob-adapter

same interface for different glob implementations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

glob-adapter

same interface for different glob implementations

Usage

const adapter = require('glob-adapter').adapter;

const glob = adapter();
const res = await glob.read('./*.js');
console.log(res); // ['file1.js', 'file2.js']

const syncRes = glob.readSync('./*.js');
console.log(syncRes); // ['file1.js', 'file2.js']


// glob-fs
const globFs = adapter('glob-fs');
const res = await globFs.read('./*.js');
console.log(res); // ['file1.js', 'file2.js']

// fast-glob (default)
const fastGlob = adapter('fast-glob');
const res = await fastGlob.read('./*.js');
console.log(res); // ['file1.js', 'file2.js']

About

same interface for different glob implementations


Languages

Language:JavaScript 100.0%