Skip to content

Instantly share code, notes, and snippets.

@jehoshua02
Created May 4, 2015 23:04
Show Gist options
  • Save jehoshua02/0dea1b230d6299509eef to your computer and use it in GitHub Desktop.
Save jehoshua02/0dea1b230d6299509eef to your computer and use it in GitHub Desktop.
React.addons.classSet() replacement ...
module.exports = function (classSet) {
return Object.keys(classSet).filter(function (className) {
return !!classSet[className];
}).join(' ');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment