-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
45 lines (40 loc) · 1.06 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
var autoprefix = require('autoprefixer-core');
var crypto = require('crypto');
var cache = Object.create(null);
module.exports = function (options) {
options = options || {};
var prefixerOptions = {
cascade: true
};
var browsers = options.browsers;
if (browsers != null) {
if (browsers === '') {
browsers = [];
}
else if (!Array.isArray(browsers)) {
browsers = browsers.split(',').map(function(i) {return i.trim()});
}
prefixerOptions.browsers = browsers;
}
return function autoprefixer(file, done) {
if (file.extension !== 'css') return done();
file.read(function (err, string) {
if (err) return done(err);
var hash = (browsers||[]).join(',') + calculate(string);
var res;
try {
res = cache[hash] = cache[hash] || autoprefix(prefixerOptions).process(string);
} catch (err) {
done(err);
return;
}
file.string = res.css;
done();
})
}
}
function calculate(string) {
return crypto.createHash('md5')
.update(string)
.digest('hex');
}