mirror of
https://github.com/amark/gun.git
synced 2025-07-08 13:52:32 +00:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
var Gun = require('../../index');
|
|
|
|
var gun = Gun({file: __dirname+'/old2020json'});
|
|
|
|
gun.get('test').once(function(data, key){
|
|
console.log(key, data);
|
|
if(!data){ throw "not compatible!" }
|
|
}); |