[][src]Function boa::builtins::array::every

pub fn every(
    this: &Value,
    args: &[Value],
    interpreter: &mut Interpreter
) -> ResultValue

Array.prototype.every ( callback, [ thisArg ] )

The every method executes the provided callback function once for each element present in the array until it finds the one where callback returns a falsy value. It returns false if it finds such element, otherwise it returns true. https://tc39.es/ecma262/#sec-array.prototype.every/