mirror of
https://github.com/amark/gun.git
synced 2025-05-29 18:26:42 +00:00
10 lines
273 B
JavaScript
10 lines
273 B
JavaScript
|
|
// Security, Encryption, and Authorization: SEA.js
|
|
// MANDATORY READING: http://gun.js.org/explainers/data/security.html
|
|
// THIS IS AN EARLY ALPHA!
|
|
|
|
function SEA(){}
|
|
if(typeof window !== "undefined"){ SEA.window = window }
|
|
|
|
module.exports = SEA;
|
|
|