0.3.0 • Published 1 year ago

react-native-depot v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-native-depot

react-native-depot

Installation

npm install react-native-depot

Usage

import { merge, patch } from 'react-native-depot';

// ...

const mergeResult = await merge(`{
  "baz": ["one", "two", "three"],
  "foo": "bar"
}`);

const patchResult = await patch(`[
  { "op": "replace", "path": "/baz", "value": "boo" },
  { "op": "add", "path": "/hello", "value": ["world"] },
  { "op": "remove", "path": "/foo"}
]`);

const selectResult = await select('/foo/baz');

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library