mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* Stub of VibrationIOS for Android.
|
|
*
|
|
* @providesModule VibrationIOS
|
|
*/
|
|
'use strict';
|
|
|
|
var warning = require('warning');
|
|
|
|
var VibrationIOS = {
|
|
vibrate: function() {
|
|
warning('VibrationIOS is not supported on this platform!');
|
|
}
|
|
};
|
|
|
|
module.exports = VibrationIOS;
|