source: imaps-frontend/node_modules/html2canvas/dist/lib/css/property-descriptors/line-break.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 720 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.lineBreak = exports.LINE_BREAK = void 0;
4var LINE_BREAK;
5(function (LINE_BREAK) {
6 LINE_BREAK["NORMAL"] = "normal";
7 LINE_BREAK["STRICT"] = "strict";
8})(LINE_BREAK = exports.LINE_BREAK || (exports.LINE_BREAK = {}));
9exports.lineBreak = {
10 name: 'line-break',
11 initialValue: 'normal',
12 prefix: false,
13 type: 2 /* IDENT_VALUE */,
14 parse: function (_context, lineBreak) {
15 switch (lineBreak) {
16 case 'strict':
17 return LINE_BREAK.STRICT;
18 case 'normal':
19 default:
20 return LINE_BREAK.NORMAL;
21 }
22 }
23};
24//# sourceMappingURL=line-break.js.map
Note: See TracBrowser for help on using the repository browser.