psd2bmf
Version:
Convert the psd to bmfont.
34 lines (27 loc) • 535 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class Offset {
constructor() {
this.reset();
}
parse(offset) {
if (!offset) return;
let arr = offset.split(',').map(val => {
return parseInt(val, 10);
});
this.set.apply(this, arr);
}
set(top = 0, right = 0, bottom = 0, left = 0) {
this.top = top;
this.right = right;
this.bottom = bottom;
this.left = left;
}
reset() {
this.set();
}
}
exports.default = Offset;