Comparing version 0.4.0-alpha.12 to 0.4.0-alpha.13
@@ -12,3 +12,3 @@ import { stringHash } from '@saulx/hash'; | ||
i++; | ||
cache[h] = CHARS[(i % 54) + 12] + CHARS[~~(i / 64) % 64]; | ||
cache[h] = CHARS[(i % 52) + 12] + CHARS[~~(i / 64) % 64]; | ||
} | ||
@@ -15,0 +15,0 @@ return cache[h]; |
{ | ||
"name": "inlines", | ||
"description": "When you just want to use the style prop in React", | ||
"version": "0.4.0-alpha.12", | ||
"version": "0.4.0-alpha.13", | ||
"main": "dist/src/index.js", | ||
@@ -6,0 +6,0 @@ "types": "dist/src/index.d.ts", |
@@ -15,5 +15,5 @@ import { stringHash } from '@saulx/hash' | ||
i++ | ||
cache[h] = CHARS[(i % 54) + 12] + CHARS[~~(i / 64) % 64] | ||
cache[h] = CHARS[(i % 52) + 12] + CHARS[~~(i / 64) % 64] | ||
} | ||
return cache[h] | ||
} |