Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.overflowWrap = void 0;
exports.overflowWrap = {
name: 'overflow-wrap',
initialValue: 'normal',
prefix: false,
type: 2 /* IDENT_VALUE */,
parse: function (_context, overflow) {
switch (overflow) {
case 'break-word':
return "break-word" /* BREAK_WORD */;
case 'normal':
default:
return "normal" /* NORMAL */;
}
}
};
//# sourceMappingURL=overflow-wrap.js.map