devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
25 lines (24 loc) • 673 B
JavaScript
/**
* DevExtreme (esm/renovation/ui/scroll_view/utils/get_augmented_location.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _extends from "@babel/runtime/helpers/esm/extends";
import {
isNumeric
} from "../../../../core/utils/type";
export function getAugmentedLocation(location) {
if (isNumeric(location)) {
return {
left: location,
top: location
}
}
return _extends({
top: 0,
left: 0
}, location)
}