@xcpcio/core 0.50.0 → 0.50.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1346,7 +1346,7 @@ class Submission {
1346
1346
  get timestampDisplayFormatWithMilliSecond() {
1347
1347
  let res = this.timestampDisplayFormatWithSecond;
1348
1348
  if (this.timestampUnit === "millisecond") {
1349
- const fl = (this.timestamp % 1e3).toString().padEnd(3, "0");
1349
+ const fl = (this.timestamp % 1e3).toString().padStart(3, "0");
1350
1350
  res += `.${fl}`;
1351
1351
  }
1352
1352
  return res;
package/dist/index.mjs CHANGED
@@ -1313,7 +1313,7 @@ class Submission {
1313
1313
  get timestampDisplayFormatWithMilliSecond() {
1314
1314
  let res = this.timestampDisplayFormatWithSecond;
1315
1315
  if (this.timestampUnit === "millisecond") {
1316
- const fl = (this.timestamp % 1e3).toString().padEnd(3, "0");
1316
+ const fl = (this.timestamp % 1e3).toString().padStart(3, "0");
1317
1317
  res += `.${fl}`;
1318
1318
  }
1319
1319
  return res;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xcpcio/core",
3
- "version": "0.50.0",
3
+ "version": "0.50.2",
4
4
  "description": "XCPCIO Core",
5
5
  "author": "Dup4 <lyuzhi.pan@gmail.com>",
6
6
  "license": "MIT",
@@ -49,7 +49,7 @@
49
49
  "papaparse": "^5.4.1",
50
50
  "string-width": "^6.1.0",
51
51
  "xlsx-js-style": "^1.2.0",
52
- "@xcpcio/types": "0.50.0"
52
+ "@xcpcio/types": "0.50.2"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@babel/types": "^7.22.4",
package/src/submission.ts CHANGED
@@ -98,7 +98,7 @@ export class Submission {
98
98
  let res = this.timestampDisplayFormatWithSecond;
99
99
 
100
100
  if (this.timestampUnit === "millisecond") {
101
- const fl = (this.timestamp % 1000).toString().padEnd(3, "0");
101
+ const fl = (this.timestamp % 1000).toString().padStart(3, "0");
102
102
  res += `.${fl}`;
103
103
  }
104
104