HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/renderkid/lib/renderKid/styleApplier/inline.js
"use strict";

// Generated by CoffeeScript 2.5.1
var _common, inlineStyleApplier, self, tools;

tools = require('../../tools');
_common = require('./_common');
module.exports = inlineStyleApplier = self = {
  applyTo: function applyTo(el, style) {
    var ret;
    ret = _common.getStyleTagsFor(style);

    if (style.marginLeft != null) {
      ret.before = tools.repeatString("&sp;", parseInt(style.marginLeft)) + ret.before;
    }

    if (style.marginRight != null) {
      ret.after += tools.repeatString("&sp;", parseInt(style.marginRight));
    }

    if (style.paddingLeft != null) {
      ret.before += tools.repeatString("&sp;", parseInt(style.paddingLeft));
    }

    if (style.paddingRight != null) {
      ret.after = tools.repeatString("&sp;", parseInt(style.paddingRight)) + ret.after;
    }

    return ret;
  }
};