summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/utils/vendor/keen-slider/polyfills.js
blob: 189223c8348309b6bf30d1e9c6835f9cfe72b2e5 (plain)
1
2
3
4
5
if (!Math.sign) {
  Math.sign = function (x) {
    return (x > 0) - (x < 0) || +x
  }
}