9 lines
293 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
2024-08-02 18:19:39 +08:00
exports.rtlInset = rtlInset;
2024-01-29 09:26:07 +08:00
const seemly_1 = require("seemly");
function rtlInset(inset) {
const { left, right, top, bottom } = (0, seemly_1.getPadding)(inset);
return `${top} ${right} ${bottom} ${left}`;
}