Files
babel/packages/babel-plugin-transform-destructuring/test/fixtures/regression/8528/output.js
2018-09-28 11:45:42 -04:00

10 lines
134 B
JavaScript

function isBetween(x, a, b) {
if (a > b) {
var _ref = [b, a];
a = _ref[0];
b = _ref[1];
}
return x > a && x < b;
}