react-native-styleman
Version:
Responsive styling library for react native
16 lines (12 loc) • 318 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getRound = void 0;
var _reactNative = require("react-native");
var getRound = function getRound() {
return function (value) {
return _reactNative.PixelRatio.roundToNearestPixel(value);
};
};
exports.getRound = getRound;