Skip to content

Instantly share code, notes, and snippets.

@jordaaash
Created October 8, 2014 22:24
Show Gist options
  • Save jordaaash/4cc51cb4df0ab650a574 to your computer and use it in GitHub Desktop.
Save jordaaash/4cc51cb4df0ab650a574 to your computer and use it in GitHub Desktop.
'use strict';
var slice = Array.prototype.slice,
classes;
classes = function () {
return slice.call(arguments).filter(function (argument) {
return argument != null && argument !== '';
}).join(' ');
};
module.exports = classes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment