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

https://github.com/oresoftware/vamoot

Immutable objects with just getters/setters
https://github.com/oresoftware/vamoot

getter immutable immutablejs javascript nodejs proxy setter

Last synced: 10 months ago
JSON representation

Immutable objects with just getters/setters

Awesome Lists containing this project

README

          

# Vamoot

A simple stand-in for writable-once Proxy

```js

import {VamootProxy} from 'vamoot';
const v = new VamootProxy();
v.set('foo','bar');
v.get('foo');
v.set('foo', 'star') // error

```