UNPKG
react-native-sound-recorder
Version:
latest (1.5.0)
1.5.0
1.4.0
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
Simplest Sound Recorder for React Native
github.com/kevinresol/react-native-sound-recorder
react-native-sound-recorder
/
index.js
13 lines
(8 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
NativeModules
}
from
'react-native'
;
const
{
RNSoundRecorder
} =
NativeModules
;
var
start =
RNSoundRecorder
.
start
;
RNSoundRecorder
.
start
=
function
(
path, options
) {
if
(options ==
null
) options = {};
return
start
(path, options); }
export
default
RNSoundRecorder
;