Spencer Ahrens 5225acea01 Fix tests
2015-04-24 12:15:11 -07:00

21 lines
356 B
JavaScript

/**
* Copyright 2004-present Facebook. All Rights Reserved.
*/
'use strict';
var PixelRatio = {
startDetecting: function () {
// noop for our implementation
},
get: function() {
return 2;
},
getPixelSizeForLayoutSize: function (layoutSize) {
return Math.round(layoutSize * PixelRatio.get());
}
};
module.exports = PixelRatio;