summary refs log tree commit diff
path: root/lib/head.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/head.fnl')
-rw-r--r--lib/head.fnl6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/head.fnl b/lib/head.fnl
deleted file mode 100644
index ddee698..0000000
--- a/lib/head.fnl
+++ /dev/null
@@ -1,6 +0,0 @@
-; return the first item in a table
-(fn head [t] (if (> (length t) 0)
-               (?. t 1)
-               []))
-
-{: head}