@jplorg/jpl
Version:
JPL interpreter
22 lines (15 loc) • 515 B
JavaScript
import { JPLTypeError } from '../library';
function builtin(runtime, signal, next, input, arg0) {
const value = runtime.unwrapValue(input);
const t = runtime.type(value);
const token = runtime.unwrapValue(arg0 ?? null);
const tt = runtime.type(token);
switch (t) {
case 'string':
if (tt === 'string') return next(value.startsWith(token));
break;
default:
}
throw new JPLTypeError('%s (%*<100v) cannot start with %s (%*<100v)', t, value, tt, token);
}
export default builtin;