UNPKG
@emotion/hash
Version:
latest (0.9.2)
really-unsafe-please-do-not-use (10.0.0-really-unsafe-please-do-not-use.2)
10.0.0-really-unsafe-please-do-not-use.2
10.0.0-really-unsafe-please-do-not-use.1
10.0.0-really-unsafe-please-do-not-use.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
A MurmurHash2 implementation
github.com/emotion-js/emotion/tree/main
emotion-js/emotion
@emotion/hash
/
dist
/
emotion-hash.cjs.js
8 lines
(6 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
if
(process.
env
.
NODE_ENV
===
"production"
) {
module
.
exports
=
require
(
"./emotion-hash.cjs.prod.js"
); }
else
{
module
.
exports
=
require
(
"./emotion-hash.cjs.dev.js"
); }