UNPKG

@react-native-ohos/react-native-unistyles

Version:
11 lines (8 loc) 357 B
// eslint-disable-next-line camelcase import { murmurhash2_32_gc } from './hash32' export const generateReactNativeWebId = (key: string, value: string): string => { const hashedString = murmurhash2_32_gc(key + value, 1).toString(36) return process.env.NODE_ENV !== 'production' ? `r-${key}-${hashedString}` : `r-${hashedString}` }