Create and Delete Records
Create Record
import {Record} from 'dubnium'
new Record("tag",{"data":"here"})Delete Record
import {deleteByTag} from 'dubnium'
deleteByTag("tag_here")Last updated
Create a new Record.
import {Record} from 'dubnium'
new Record("tag",{"data":"here"})Delete a record, found by it's tag.
import {deleteByTag} from 'dubnium'
deleteByTag("tag_here")Last updated