UNPKG

arb-convert

Version:

Convert Application Resource Bundle (ARB) translation files to other translation formats and back

12 lines (11 loc) 293 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function zeroPad(value, length) { if (length === void 0) { length = 2; } var val = String(value); while (val.length < length) { val = "0" + val; } return val; } exports.default = zeroPad;