aboutsummaryrefslogtreecommitdiff
path: root/files.moon
diff options
context:
space:
mode:
Diffstat (limited to 'files.moon')
-rw-r--r--files.moon7
1 files changed, 0 insertions, 7 deletions
diff --git a/files.moon b/files.moon
index 3950ce3..a9fbb5c 100644
--- a/files.moon
+++ b/files.moon
@@ -134,11 +134,4 @@ Files.get_line = (str, line_no)->
return unless stop
return (str\sub(start, stop - 2))
-get_lines = re.compile([[
- lines <- {| line (%nl line)* |}
- line <- {[^%nl]*}
-]], nl:lpeg.P("\r")^-1 * lpeg.P("\n"))
-
-Files.get_lines = (str)-> get_lines\match(str)
-
return Files