7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
import * as nodeCrypto from 'crypto';
|
|
|
|
export const crypto: { node?: any; web?: any } = {
|
|
node: nodeCrypto,
|
|
web: undefined,
|
|
};
|