@twin.org/core 0.0.1-next.43 → 0.0.1-next.45
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -142,7 +142,7 @@ class Is {
|
|
|
142
142
|
static stringBase64Url(value) {
|
|
143
143
|
return (Is.stringValue(value) &&
|
|
144
144
|
// eslint-disable-next-line unicorn/better-regex
|
|
145
|
-
/^(
|
|
145
|
+
/^([A-Za-z0-9-_])*$/.test(value));
|
|
146
146
|
}
|
|
147
147
|
/**
|
|
148
148
|
* Is the value a base58 string.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -140,7 +140,7 @@ class Is {
|
|
|
140
140
|
static stringBase64Url(value) {
|
|
141
141
|
return (Is.stringValue(value) &&
|
|
142
142
|
// eslint-disable-next-line unicorn/better-regex
|
|
143
|
-
/^(
|
|
143
|
+
/^([A-Za-z0-9-_])*$/.test(value));
|
|
144
144
|
}
|
|
145
145
|
/**
|
|
146
146
|
* Is the value a base58 string.
|
package/docs/changelog.md
CHANGED