hz-zhhq-web/node_modules/plantuml-encoder/lib/inflate.js

8 lines
150 B
JavaScript
Raw Normal View History

2025-02-25 13:46:30 +08:00
'use strict'
const zlib = require('zlib')
module.exports = function (data) {
return zlib.inflateRawSync(Buffer.from(data, 'binary')).toString()
}