@bluemarble/bm-components 0.0.57 → 0.0.58
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/esm/index.js
CHANGED
|
@@ -15331,7 +15331,7 @@ function DateFormat(date) {
|
|
|
15331
15331
|
}
|
|
15332
15332
|
return moment().add(data.utc, 'hours');
|
|
15333
15333
|
}
|
|
15334
|
-
|
|
15334
|
+
const methods = {
|
|
15335
15335
|
from: {
|
|
15336
15336
|
db: momentWithDate(),
|
|
15337
15337
|
client: convertDateFromClient()
|
|
@@ -15339,9 +15339,10 @@ function DateFormat(date) {
|
|
|
15339
15339
|
now,
|
|
15340
15340
|
utc: (newUTC) => {
|
|
15341
15341
|
data.utc = newUTC;
|
|
15342
|
-
return
|
|
15342
|
+
return methods;
|
|
15343
15343
|
}
|
|
15344
15344
|
};
|
|
15345
|
+
return methods;
|
|
15345
15346
|
}
|
|
15346
15347
|
|
|
15347
15348
|
function RouteHelper(methods, middlewares = []) {
|