We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd14e1 commit 7bfd5c6Copy full SHA for 7bfd5c6
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "stability-ui",
3
"type": "module",
4
- "version": "0.11.43-alpha",
+ "version": "0.11.44-alpha",
5
"scripts": {
6
"dev": "astro dev",
7
"start": "astro dev",
src/utils/functions/getSpecificSymbol.ts
@@ -1,5 +1,5 @@
export const getSpecificSymbol = (specific: string): string => {
- const parts = specific.trim().split(/\s+/);
+ const parts = specific ? specific.trim().split(/\s+/) : "";
for (const part of parts) {
if (!/^\d+(\.\d+)?$/.test(part)) {
0 commit comments