There was an error while loading. Please reload this page.
Check if all characters pass the test, like Array.every().
Array.every()
const every = require('@extra-string/every'); // every(<string>, <testFn>, <thisArg>) every('badf00d', (v) => v<='f'); // true every('g00df00d', (v) => v<='f'); // false every('', (v) => v<='f'); // true