UNPKG

awv3

Version:
14 lines (12 loc) 233 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.log = log; exports.halt = halt; function log(message) { console.error(message); } function halt(message) { throw new Error(message); }