From 4f2cdf55fbfa6fc3cb7b996a3fc87105bbff313e Mon Sep 17 00:00:00 2001 From: ehsan shariati Date: Fri, 18 Nov 2022 14:00:20 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da3b270..87db257 100644 --- a/README.md +++ b/README.md @@ -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()); ```