Skip to content

Instantly share code, notes, and snippets.

@pragmaticlogic
Created March 29, 2015 14:30
Show Gist options
  • Select an option

  • Save pragmaticlogic/91c1cd2f32ce06c7843b to your computer and use it in GitHub Desktop.

Select an option

Save pragmaticlogic/91c1cd2f32ce06c7843b to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/jusilo
<!DOCTYPE html>
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ramda/0.13.0/ramda.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
"use strict";
var f = function (a, b, c) {
return a + b + c;
};
var fc = R.curry(f);
var upperF = R.map(R.toUpper);
upper = upperF("hello");
</script>
<script id="jsbin-source-html" type="text/html"><!DOCTYPE html>
<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/ramda/0.13.0/ramda.min.js"><\/script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
</body>
</html></script>
<script id="jsbin-source-javascript" type="text/javascript">var f = (a, b, c) => {
return a + b + c;
};
var fc = R.curry(f);
var upperF = R.map(R.toUpper);
upper = upperF('hello');
</script></body>
</html>
"use strict";
var f = function (a, b, c) {
return a + b + c;
};
var fc = R.curry(f);
var upperF = R.map(R.toUpper);
upper = upperF("hello");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment