Files
tekelanew_acs/acs/nladmin-ui/node_modules/jsbarcode/bin/help/fixOptions.js

17 lines
425 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = fixOptions;
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;
}