mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-05-13 19:35:41 +00:00
committed by
Nicolas Gallagher
parent
abd4cc7cbf
commit
17e4cfb4b2
@@ -79,7 +79,7 @@ function newtonRaphsonIterate(aX, _aGuessT, mX1, mX2) {
|
||||
return aGuessT;
|
||||
}
|
||||
|
||||
module.exports = function bezier(
|
||||
export default function bezier(
|
||||
mX1: number,
|
||||
mY1: number,
|
||||
mX2: number,
|
||||
|
||||
@@ -7,7 +7,9 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
createInteractionHandle: function() {},
|
||||
clearInteractionHandle: function() {}
|
||||
const InteractionManager = {
|
||||
createInteractionHandle() {},
|
||||
clearInteractionHandle() {}
|
||||
};
|
||||
|
||||
export default InteractionManager;
|
||||
|
||||
@@ -21,4 +21,4 @@ SetPolyfill.prototype.forEach = function(cb) {
|
||||
this._cache.forEach(cb);
|
||||
};
|
||||
|
||||
module.exports = SetPolyfill;
|
||||
export default SetPolyfill;
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
module.exports = function(style) {
|
||||
|
||||
export default function flattenStyle(style) {
|
||||
return style;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user