Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/d3x0r/gun-unset

Gun extension that adds ability to remove item from a set.
https://github.com/d3x0r/gun-unset

extension gun

Last synced: 17 days ago
JSON representation

Gun extension that adds ability to remove item from a set.

Awesome Lists containing this project

README

        

# Unset

usage:

```
var Gun = require( 'gun' );
require( 'gun-unset' );

var gun = new Gun();
var member = gun.get( "member" );
gun.get( "something" ).unset( member );

```