1.0.0 • Published 6 years ago

wanderlust v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Getting started 🚀

# install via npm:
npm i wanderlust
# or use yarn:
yarn add wanderlust

And using it is as easy as this:

const { walk } = require('wanderlust')

walk('files', (file) => {
	console.log('Found file: ', file)
})

Or if you want to do it synchronously:

const { walkSync } = require('wanderlust')

walkSync('files', (file) => {
	console.log('Found file: ', file)
})