react-native-unistyles
Version:
Level up your React Native StyleSheet
7 lines • 353 B
JavaScript
// eslint-disable-next-line camelcase
import { murmurhash2_32_gc } from './hash32';
export const generateReactNativeWebId = (key, value) => {
const hashedString = murmurhash2_32_gc(key + value, 1).toString(36);
return process.env.NODE_ENV !== 'production' ? `r-${key}-${hashedString}` : `r-${hashedString}`;
};
//# sourceMappingURL=generateId.js.map