persona-community-5/.pnpm-store/v3/files/a6/f5ceeca883574a2087b90c1f1ec00dde5770b55ed9f23676fd5a81c9a7702710f291f979053bf78071ca48c3f3a155d910d2ee10f11410e2e300d8061f1eac
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

23 lines
495 B
Plaintext

'use strict';
const VOID = -1;
exports.VOID = VOID;
const PRIMITIVE = 0;
exports.PRIMITIVE = PRIMITIVE;
const ARRAY = 1;
exports.ARRAY = ARRAY;
const OBJECT = 2;
exports.OBJECT = OBJECT;
const DATE = 3;
exports.DATE = DATE;
const REGEXP = 4;
exports.REGEXP = REGEXP;
const MAP = 5;
exports.MAP = MAP;
const SET = 6;
exports.SET = SET;
const ERROR = 7;
exports.ERROR = ERROR;
const BIGINT = 8;
exports.BIGINT = BIGINT;
// export const SYMBOL = 9;