build: bump new versions
Publish to NPM / Check version changes and publish (push) Failing after 10m34s

This commit is contained in:
2026-06-18 02:57:03 +07:00
parent e73e8d2cdd
commit ab6d8f6ce0
198 changed files with 226 additions and 223 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ const ASCII_ZERO = 0x30;
* luhn('4111 1111 1111 1111'); // true
* luhn('4111 1111 1111 1112'); // false
*
* @since 0.0.2
* @since 0.0.1
*/
export function luhn(value: string): boolean {
const digits = value.replaceAll(NON_DIGIT, '');