Comparing version 1.0.0 to 1.0.1
@@ -1,25 +0,15 @@ | ||
import type { CamelCase, DelimiterCase, PascalCase, SnakeCase } from 'type-fest' | ||
export function words(str: string): string[] | ||
export function upperFirst<T extends string>(str: T): Capitalize<T> | ||
export function upperFirst(str: string): string | ||
export function camelCase<T extends string>(str: T): CamelCase<T> | ||
export function camelCase(str: string): string | ||
export function pascalCase<T extends string>(str: string): PascalCase<T> | ||
export function pascalCase(str: string): string | ||
export function snakeCase<T extends string>(str: string): SnakeCase<T> | ||
export function snakeCase(str: string): string | ||
export function kebabCase<T extends string>(str: string): SnakeCase<T> | ||
export function kebabCase(str: string): string | ||
export function sentenceCase<T extends string>( | ||
str: string, | ||
): Capitalize<DelimiterCase<T, ' '>> | ||
export function sentenceCase(str: string): string | ||
export function titleCase(str: string): string |
{ | ||
"name": "tiny-case", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Tiny Casing utils", | ||
@@ -8,6 +8,3 @@ "main": "index.js", | ||
"author": "Jason Quense", | ||
"license": "MIT", | ||
"optionalDependencies": { | ||
"type-fest": "^0.20.2" | ||
} | ||
"license": "MIT" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
0
5445
114