You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
467 B
22 lines
467 B
6 years ago
|
'use strict';
|
||
|
const bufferFrom = require('buffer-from');
|
||
|
const isSvg = require('is-svg');
|
||
|
const SVGO = require('svgo');
|
||
|
|
||
|
module.exports = opts => buf => {
|
||
|
opts = Object.assign({multipass: true}, opts);
|
||
|
|
||
|
if (!isSvg(buf)) {
|
||
|
return Promise.resolve(buf);
|
||
|
}
|
||
|
|
||
|
if (Buffer.isBuffer(buf)) {
|
||
|
buf = buf.toString();
|
||
|
}
|
||
|
|
||
|
const svgo = new SVGO(opts);
|
||
|
|
||
|
// TODO: Use `Buffer.from` when targeting Node.js >=6
|
||
|
return svgo.optimize(buf).then(res => bufferFrom(res.data));
|
||
|
};
|