mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 06:15:15 +00:00
Remove unused public method
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
import _ from 'lodash';
|
||||
|
||||
export default function (opacity) {
|
||||
let value = +opacity;
|
||||
return (_.isNil(opacity) || isNaN(value)) ? 1 : value;
|
||||
const value = +opacity;
|
||||
return (typeof value !== 'number' || isNaN(value)) ? 1 : value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user