We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5194db commit a97de1aCopy full SHA for a97de1a
README.md
@@ -1,11 +1,11 @@
1
# @axhxrx/date
2
3
-A minimal library for formatting dates. Example:
+A minimal utility library for formatting dates. Example:
4
5
```ts
6
-const backThen = const result = dateToFormat('YYYY-MM-DD', new Date('1975-01-01T02:00:00Z'));
+const backThen = dateToFormat('YYYY-MM-DD', new Date('1975-01-01T02:00:00Z'));
7
// '1975-01-01'
8
9
-const rightNow = const result = dateToFormat('YYYY-MM-DD');
+const rightNow = dateToFormat('YYYY-MM-DD');
10
// same thing, only later in time...
11
```
0 commit comments