UNPKG

kityminder

Version:
17 lines (14 loc) 388 B
KityMinder.registerProtocol('json', function(minder) { return { fileDescription: 'KityMinder 格式', fileExtension: '.km', dataType: 'text', mineType: 'application/json', encode: function(json) { return JSON.stringify(json); }, decode: function(local) { return JSON.parse(local); } }; });