UNPKG

react-native-sound-recorder

Version:

Simplest Sound Recorder for React Native

13 lines (8 loc) 277 B
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;