@salespark/toolkit 2.1.21 → 2.1.22
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/README.md +8 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2611,6 +2611,7 @@ function generatePassword(lengthOrOptions, memorable, pattern, prefix) {
|
|
|
2611
2611
|
if (memorable !== void 0) options.memorable = memorable;
|
|
2612
2612
|
if (pattern !== void 0) options.pattern = pattern;
|
|
2613
2613
|
if (prefix !== void 0) options.prefix = prefix;
|
|
2614
|
+
options.ignoreSecurityRecommendations = true;
|
|
2614
2615
|
return generatePasswordSync(options);
|
|
2615
2616
|
}
|
|
2616
2617
|
var generatePasswordWithOptions = (options) => {
|