Skip to content

v4.3.4

Compare
Choose a tag to compare
@miripiruni miripiruni released this 01 Feb 11:39
· 628 commits to master since this release

Attention: revert commit from v4.3.3 [a48aeab5a6] - BEMHTML: should properly render attr values (miripiruni)

Skip mix item if falsy:

// BEMJSON
{
    block: 'b1',
    mix: [ null, '', false, undefined, 0, { block: 'b2' } ]
}
// Will render to:
'<div class="b1 b2"></div>'

Commits:

  • [e8e468dce7] - BEMHTML: skip mix item if falsy (miripiruni)