Current section

Files

Jump to
lustre src lustre-escape.ffi.mjs
Raw

src/lustre-escape.ffi.mjs

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);
}