###Install
$ npm install pathfilter
###byExt(ext, path(s))
var pFilter = require('pathfilter');
var ext = 'js';
var path = '/path/to/abc.js';
pFilter.byExt(ext,path);
// /path/to/abc.js
ext = ['js','css'];
path = '/path/to/abc.js';
pFilter.byExt(ext,path);
// /path/to/abc.js
ext = 'js';
path = ['/path/to/abc.js','/path/to/def.js','/path/to/ghi.css','/path/to/jkl.exe'];
pFilter.byExt(ext,path);
// /path/to/abc.js,/path/to/def.js
ext = ['js','css'];
path = ['/path/to/abc.js','/path/to/def.js','/path/to/ghi.css','/path/to/jkl.exe'];
pFilter.byExt(ext,path);
// /path/to/abc.js,/path/to/def.js,/path/to/ghi.css