Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/d3x0r/gun-unset
- Owner: d3x0r
- Created: 2017-08-18T12:51:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-02T20:10:26.000Z (over 7 years ago)
- Last Synced: 2024-06-10T00:44:45.578Z (8 months ago)
- Topics: extension, gun
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 );```