blun-king-cli 9.1.186 → 9.1.187
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/bin/update-notice.js +1 -1
- package/package.json +1 -1
package/bin/update-notice.js
CHANGED
|
@@ -199,7 +199,7 @@ function canonicalOfficialNotesUrl(value) {
|
|
|
199
199
|
|
|
200
200
|
function isIsoTimestamp(value) {
|
|
201
201
|
if (typeof value !== 'string') return false;
|
|
202
|
-
const match = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(?:\.\d{1,
|
|
202
|
+
const match = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(?:\.\d{1,9})?Z$/.exec(value);
|
|
203
203
|
if (!match) {
|
|
204
204
|
return false;
|
|
205
205
|
}
|