Created
October 8, 2014 22:24
-
-
Save jordaaash/4cc51cb4df0ab650a574 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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