Select DOM elements, FD style.
npm install fd-select --save
var select = require('fd-select').select;
var selectOne = require('fd-select').selectOne;
var foo = select(document)('.foo');
// or
var foo = select('.foo');
// ^ foo is an array!
var foo = selectOne('.foo');
// ^ foo is the first element!