-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.js
35 lines (32 loc) · 844 Bytes
/
style.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const _ = require('./utils');
module.exports = class Style {
constructor(style) {
const styles = this.styles = _.arrify(style);
this.true = Boolean(styles.length);
const values = this.values = new Set
for (let style of styles) {
if (!style) continue;
if (style.default) style = style.default;
for (const key in style) {
this.values.add(style[key]);
}
}
}
has(key) {
for (let style of this.styles) {
if (!style) continue
if (style.default) style = style.default;
if (key in style) return true;
}
false;
}
get(key) {
const styles = [];
for (let style of this.styles) {
if (!style) continue
if (style.default) style = style.default;
if (key in style) styles.push(style[key]);
}
if (styles.length) return styles;
}
}