13 lines
169 B
JavaScript
13 lines
169 B
JavaScript
function generateCSSUnit ( value, unit ) {
|
|
|
|
var css = ""
|
|
|
|
if( typeof value != "undefined" ) {
|
|
css += value + unit
|
|
}
|
|
|
|
return css
|
|
}
|
|
|
|
export default generateCSSUnit
|