Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-05-08 04:19:48 +03:00
parent bbe9f37ae5
commit cc9c9c55e2

View File

@ -542,14 +542,16 @@ hasMixin(<base>, <mixin>)
### `mixout(..)` ### `mixout(..)`
Remove the first match for each object out of a prototype chain Remove the _first_ match for each input object out of a prototype chain
of _base_
``` ```
mixout(<base>, <object>, ..) mixout(<base>, <object>, ..)
mixout(<base>, 'first', <object>, ..) mixout(<base>, 'first', <object>, ..)
-> <base> -> <base>
``` ```
Remove all occurrences of each object out of a prototype chain Remove _all_ occurrences of each input object out of a prototype chain
of _base_
``` ```
mixout(<base>, 'all', <object>, ..) mixout(<base>, 'all', <object>, ..)
-> <base> -> <base>