1 | "use strict";
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 | exports.isStyle = isStyle;
|
---|
7 | exports.isWidth = isWidth;
|
---|
8 | exports.isColor = isColor;
|
---|
9 | exports.isValidWsc = isValidWsc;
|
---|
10 |
|
---|
11 | var _colornames = _interopRequireDefault(require("./colornames.js"));
|
---|
12 |
|
---|
13 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
---|
14 |
|
---|
15 | const widths = ['thin', 'medium', 'thick'];
|
---|
16 | const styles = ['none', 'hidden', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset'];
|
---|
17 |
|
---|
18 | function isStyle(value) {
|
---|
19 | return value && !!~styles.indexOf(value.toLowerCase());
|
---|
20 | }
|
---|
21 |
|
---|
22 | function isWidth(value) {
|
---|
23 | return value && !!~widths.indexOf(value.toLowerCase()) || /^(\d+(\.\d+)?|\.\d+)(\w+)?$/.test(value);
|
---|
24 | }
|
---|
25 |
|
---|
26 | function isColor(value) {
|
---|
27 | if (!value) {
|
---|
28 | return false;
|
---|
29 | }
|
---|
30 |
|
---|
31 | value = value.toLowerCase();
|
---|
32 |
|
---|
33 | if (/rgba?\(/.test(value)) {
|
---|
34 | return true;
|
---|
35 | }
|
---|
36 |
|
---|
37 | if (/hsla?\(/.test(value)) {
|
---|
38 | return true;
|
---|
39 | }
|
---|
40 |
|
---|
41 | if (/#([0-9a-z]{6}|[0-9a-z]{3})/.test(value)) {
|
---|
42 | return true;
|
---|
43 | }
|
---|
44 |
|
---|
45 | if (value === 'transparent') {
|
---|
46 | return true;
|
---|
47 | }
|
---|
48 |
|
---|
49 | if (value === 'currentcolor') {
|
---|
50 | return true;
|
---|
51 | }
|
---|
52 |
|
---|
53 | return !!~_colornames.default.indexOf(value);
|
---|
54 | }
|
---|
55 |
|
---|
56 | function isValidWsc(wscs) {
|
---|
57 | const validWidth = isWidth(wscs[0]);
|
---|
58 | const validStyle = isStyle(wscs[1]);
|
---|
59 | const validColor = isColor(wscs[2]);
|
---|
60 | return validWidth && validStyle || validWidth && validColor || validStyle && validColor;
|
---|
61 | } |
---|