-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (22 loc) · 837 Bytes
/
index.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
const postcss = require('postcss'),
messageHelpers = require("postcss-message-helpers"),
math = require("./process-math.js");
module.exports = postcss.plugin('postcss-jsmath', function (opts) {
return function (root, result) {
math.set(opts);
function common(key, parent) {
if (!parent || !parent[key] || !parent[key].includes("math("))
return;
try {
const c = messageHelpers.try(() => math.process(parent[key]), parent.source);
parent[key] = c;
} catch (error) {
parent.warn(result, error.message, {
word: parent[key]
});
}
}
root.walkDecls(decl => common("value", decl));
root.walkRules(rule => common("selector", rule));
};
});