UNPKG
expeditaet
Version:
latest (1.2.0)
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Advent of Code Solutions
github.com/MariannaBoyle/expeditaet.git
MariannaBoyle/expeditaet
expeditaet
/
solutions
/
typescript
/
2019
/
22
/
src
/
parse.ts
4 lines
(2 loc)
•
136 B
text/typescript
View Raw
1
2
3
4
import
{
NEWLINE
}
from
'@alexaegis/advent-of-code-lib/regex'
;
export
const
parse = (
input
:
string
):
string
[] => input.
split
(
NEWLINE
);