glob-adapter

1.2.0 • Public • Published

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']

Readme

Keywords

none

Package Sidebar

Install

npm i glob-adapter

Weekly Downloads

2

Version

1.2.0

License

ISC

Unpacked Size

6.54 kB

Total Files

10

Last publish

Collaborators

  • soenkekluth