mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:49:30 +08:00
21 lines
556 B
Text
21 lines
556 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "default", {
|
|
enumerable: true,
|
|
get: ()=>_default
|
|
});
|
|
function _default(value) {
|
|
value = `${value}`;
|
|
if (value === "0") {
|
|
return "0";
|
|
}
|
|
// Flip sign of numbers
|
|
if (/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(value)) {
|
|
return value.replace(/^[+-]?/, (sign)=>sign === "-" ? "" : "-");
|
|
}
|
|
if (value.includes("var(") || value.includes("calc(")) {
|
|
return `calc(${value} * -1)`;
|
|
}
|
|
}
|