Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha authored Nov 18, 2022
1 parent 7a684ac commit 4f2cdf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import { fula, Types } from 'react-native-fula';
await fula.initJNI('', ''); //identity,storePath

//Store file to the box
const res = await fula.put(ciduint8.toString(), valueString);
const res = await fula.putJNI(ciduint8.toString(), valueString);

//Get file path form the box
const fetchedValue = await fula.get(ciduint8.toString());
const fetchedValue = await fula.getJNI(ciduint8.toString());

```

Expand Down

0 comments on commit 4f2cdf5

Please sign in to comment.