UNPKG

compress-brotli

Version:

Simple cross Node.js inteface for using brotli compression

19 lines (16 loc) 304 B
'use strict' module.exports = (defaultOptions = {}, options = {}) => { const params = { ...(defaultOptions.params || {}), ...(options.params || {}) } return { ...defaultOptions, ...options, ...(Object.keys(params).length ? { params } : {}) } }