hz-zhhq-web/node_modules/plantuml-encoder/lib/browser-deflate.js

8 lines
153 B
JavaScript

'use strict'
var pako = require('pako/lib/deflate.js')
module.exports = function (data) {
return pako.deflateRaw(data, { level: 9, to: 'string' })
}