bemb

1.0.4 • Public • Published

bemb

/'bembɪ/

tiny BEM utility library

API

There are three methods getElement, getModifier, createBlock

getElement

Return you proper element class in BEM notation

getElement('block', 'element') // block__element

Default separator is "__" but this could be changed with third parameter

getElement('block', 'element', '--') // block--element

getModifier

Return you proper modifier class in BEM notation

getModifier('block__element', 'modifier') // block__element_modifier

Default separator is "_" but this could be changed with third parameter

getModifier('block__element', 'modifier', '-') // block__element-modifier

createBlock

Returns object with three methods getElement, getModifier, setDivs

var block = createBlock('b');
block.getElement('e'); // b__e
block.getModifier('m'); // b_m
block.getModifier('m', 'e') // b__e_m
block.setDivs('--', '-');
block.getModifier('m', 'e') // b--e-m

/bemb/

    Package Sidebar

    Install

    npm i bemb

    Weekly Downloads

    1

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    6.86 kB

    Total Files

    6

    Last publish

    Collaborators

    • komlev