2015-03-17 13:42:44 -07:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-17 13:42:44 -07:00
|
|
|
*
|
|
|
|
* Stub of VibrationIOS for Android.
|
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2015-03-17 13:42:44 -07:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2015-03-17 13:42:44 -07:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-10 15:44:52 -07:00
|
|
|
const warning = require('fbjs/lib/warning');
|
2015-03-17 13:42:44 -07:00
|
|
|
|
2018-05-10 15:44:52 -07:00
|
|
|
const VibrationIOS = {
|
2015-03-17 13:42:44 -07:00
|
|
|
vibrate: function() {
|
|
|
|
warning('VibrationIOS is not supported on this platform!');
|
2018-05-10 19:06:46 -07:00
|
|
|
},
|
2015-03-17 13:42:44 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = VibrationIOS;
|