UNPKG

@extra-array/every

Version:

Checks if all values satisfy a test.

7 lines (4 loc) 122 B
const array = require("extra-array"); var x = [1, 2, -3, -4]; array.every(x, v => v > 0); array.every(x, v => v > -10);