Compare commits

..

2 Commits

Author SHA1 Message Date
20b181b2f3 3.0.45 2022-02-02 17:03:59 +01:00
d278722da2 fix(core): update 2022-02-02 17:03:58 +01:00
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@pushrocks/smarttime",
"version": "3.0.44",
"version": "3.0.45",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@pushrocks/smarttime",
"version": "3.0.44",
"version": "3.0.45",
"license": "MIT",
"dependencies": {
"@pushrocks/lik": "^5.0.4",

View File

@ -1,7 +1,7 @@
{
"name": "@pushrocks/smarttime",
"private": false,
"version": "3.0.44",
"version": "3.0.45",
"description": "handle time in smart ways",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -85,7 +85,7 @@ export class ExtendedDate extends Date {
public exportToHyphedSortableDate() {
const units = this.exportToUnits();
return `${units.yearString}-${units.monthString}.${units.dayString}`;
return `${units.yearString}-${units.monthString}-${units.dayString}`;
}
/**