route.js
* @module greppy/helper/view/route
* @author Hermann Mayer <hermann.mayer92@gmail.com>
* @param {String} currentPath - Current path to compare
* @param {String} path - Path to match with current route
* @param {String} classes - Classes string to return on match
RouteHelper.prototype.current = function(currentPath, path, classes)
if ('string' === typeof path && currentPath === path) {