"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const chars = {}; [ "DEL", "UNDEF", "TRUE", "FALSE", "NUMBER", "BIGINT", "FUNCTION", "STRING", "SYMBOL", "NULL", "OBJECT", "ARRAY" ].forEach((k, i) => (chars[k] = String.fromCharCode(i + 0xe000))); exports.default = chars;