Skip to content

Instantly share code, notes, and snippets.

@KOBA789
Created August 8, 2011 16:04
Show Gist options
  • Save KOBA789/1132044 to your computer and use it in GitHub Desktop.
Save KOBA789/1132044 to your computer and use it in GitHub Desktop.
カリー化とか使うとこういうことなんじゃねーかと
style2prop = (function () {
re = new RegExp("");
re.compile('-[a-z]', 'g');
return function (str) {
return str.charAt(1).toUpperCase();
);
})();
@KOBA789
Copy link
Author

KOBA789 commented Aug 8, 2011

カリー化というかなんというか、一つ目の関数を生成直後に呼んじゃってるからただのクロージャだけど。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment