alipay-emulator/uni_modules/lime-barcode/components/l-barcode/jsbarcode/help/fixOptions.js

12 lines
343 B
JavaScript

function fixOptions(options) {
// Fix the margins
options.marginTop = options.marginTop || options.margin;
options.marginBottom = options.marginBottom || options.margin;
options.marginRight = options.marginRight || options.margin;
options.marginLeft = options.marginLeft || options.margin;
return options;
}
export default fixOptions;