first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
24
node_modules/html2canvas/dist/lib/css/property-descriptors/line-break.js
generated
vendored
Normal file
24
node_modules/html2canvas/dist/lib/css/property-descriptors/line-break.js
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.lineBreak = exports.LINE_BREAK = void 0;
|
||||
var LINE_BREAK;
|
||||
(function (LINE_BREAK) {
|
||||
LINE_BREAK["NORMAL"] = "normal";
|
||||
LINE_BREAK["STRICT"] = "strict";
|
||||
})(LINE_BREAK = exports.LINE_BREAK || (exports.LINE_BREAK = {}));
|
||||
exports.lineBreak = {
|
||||
name: 'line-break',
|
||||
initialValue: 'normal',
|
||||
prefix: false,
|
||||
type: 2 /* IDENT_VALUE */,
|
||||
parse: function (_context, lineBreak) {
|
||||
switch (lineBreak) {
|
||||
case 'strict':
|
||||
return LINE_BREAK.STRICT;
|
||||
case 'normal':
|
||||
default:
|
||||
return LINE_BREAK.NORMAL;
|
||||
}
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=line-break.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue