@jspm/core
Version:
This package contains the core libraries used in jspm 2.
16 lines (13 loc) • 624 B
JavaScript
function unimplemented () {
throw new Error('Node.js readline module is not supported by JSPM core outside of Node.js');
}
var readline = {
Interface: unimplemented,
clearLine: unimplemented,
clearScreenDown: unimplemented,
createInterface: unimplemented,
cursorTo: unimplemented,
emitKeypressEvents: unimplemented,
moveCursor: unimplemented
};
export { unimplemented as Interface, unimplemented as clearLine, unimplemented as clearScreenDown, unimplemented as createInterface, unimplemented as cursorTo, readline as default, unimplemented as emitKeypressEvents, unimplemented as moveCursor };