2015-03-17 13:42:44 -07:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-03-17 13:42:44 -07:00
|
|
|
*
|
|
|
|
* Stub of VibrationIOS for Android.
|
|
|
|
*
|
|
|
|
* @providesModule VibrationIOS
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-03-02 04:27:13 -08:00
|
|
|
var warning = require('fbjs/lib/warning');
|
2015-03-17 13:42:44 -07:00
|
|
|
|
|
|
|
var VibrationIOS = {
|
|
|
|
vibrate: function() {
|
|
|
|
warning('VibrationIOS is not supported on this platform!');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = VibrationIOS;
|