We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
trd
1 parent b0f4287 commit 120a633Copy full SHA for 120a633
src/trd.js
@@ -0,0 +1,9 @@
1
+'use strict'
2
+const curry = require('./curry')
3
+const getNth = require('./get-nth')
4
+
5
+function trd(xs) {
6
+ return getNth(2, xs)
7
+}
8
9
+module.exports = curry(trd)
0 commit comments