UNPKG

eliza-core

Version:

A rendition of ELIZA program engine by Weizenbaum sharable for all javascript environments

7 lines (6 loc) 160 B
import { Key } from './key'; export class GotoKey extends Key { constructor(dest) { super(dest.getKey(), dest.getRank(), dest.getDecomp()); } }