aboutsummaryrefslogtreecommitdiff
path: root/src/lustre-escape.ffi.mjs
blob: 4ef05bebd9a7e127dfc7cf6e155fcf73aade529f (plain)
1
2
3
4
5
6
7
8
9
10
11
export function slice(string, from, len) {
  return string.slice(from, from + len);
}

export function first(string) {
  return string.slice(0, 1);
}

export function drop_first(string) {
  return string.slice(1);
}