1.0.0 • Published 9 years ago

files-by-ext v1.0.0

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

files-by-ext

Give it a list of files, receive an object keyed by file extension

Install

npm install --save files-by-ext

Usage

filesByExt(['test.js', 'test2.js', 'test.css']);
//=> { js: ['test.js', 'test2.js'], css: ['test.css'] }

API

filesByExt(files)

Returns an object keyed by file extension. Uses file-extension behind the scenes.

files

Type: array

See file-extension for details on how file extensions are found and how it differs from path.extname.

License

MIT © Kim Joar Bekkelund