@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
13 lines (12 loc) • 328 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getDirection = void 0;
var DISTANCE = 5;
var getDirection = function getDirection(x, y) {
if (x > y && x > DISTANCE) return 'horizontal';
if (y > x && y > DISTANCE) return 'vertical';
return '';
};
exports.getDirection = getDirection;