Files
babel/packages/babel-plugin-transform-es2015-destructuring/test/fixtures/destructuring/spread/actual.js

6 lines
116 B
JavaScript

function isSorted([x, y, ...wow]) {
if (!zs.length) return true
if (y > x) return isSorted(zs)
return false
}