We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9aad3d4 + 0591e2b commit f7638a1Copy full SHA for f7638a1
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "solid-jsx",
3
- "version": "1.0.1",
+ "version": "1.0.2",
4
"description": "solid-js jsx compatible mdx runtime",
5
"main": "./dist/jsx-runtime.js",
6
"type": "module",
src/utilities.ts
@@ -2,7 +2,7 @@ import { isServer } from 'solid-js/web';
export const isFirstLetterCapital = (string: string): boolean => {
const first = string.charAt(0);
- return first === first.toLowerCase();
+ return first !== first.toLowerCase();
};
7
8
export const capitalizeFirstLetter = (
0 commit comments