Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add object arguments form for every method #50

Merged
merged 1 commit into from
Jun 25, 2020

Conversation

sergeysova
Copy link
Contributor

@sergeysova sergeysova commented Jun 25, 2020

// before
const $result = every(true, [$a, $b, $c])
const $result = every(() => true, [$a, $b, $c])

// NOW
const $result = every({ predicate: true, stores: [$a, $b, $c] })
const $result = every({ predicate: () => true, stores: [$a, $b, $c] })

BREAKING CHANGE: removed every(predicate, stores) form

Closes #19
Relates #27

@sergeysova sergeysova added the BREAKING CHANGES Some features changes without backward compatibility label Jun 25, 2020
@sergeysova sergeysova mentioned this pull request Jun 25, 2020
14 tasks
BREAKING CHANGE: removed every(predicate, stores) form
@sergeysova sergeysova force-pushed the feat/19-every-object-arguments-form branch from 5204efc to 6730308 Compare June 25, 2020 15:40
@sergeysova sergeysova marked this pull request as ready for review June 25, 2020 15:42
@sergeysova sergeysova merged commit aec6e01 into master Jun 25, 2020
@sergeysova sergeysova deleted the feat/19-every-object-arguments-form branch June 25, 2020 15:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BREAKING CHANGES Some features changes without backward compatibility
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add object form arguments for every
1 participant