abem

1.0.0 • Public • Published

abem

Build Status Coverage Status Standard - JavaScript Style Guide npm downloads

Extremely simple and small (~0.25Kb minified) ABEM class name generator. Developed for using with babel-plugin-transform-jsx-abem.

Note: This plugin doesn't apply any string transformation. camelCase should be applied earlier on.

Installation

npm install abem

Syntax

const _abem = abem([options])
_abem(block[, element, modifiers, mixins])
arg type
options object (default: { separators: { element: '__', modifier: '-' } })
block string
element string | null
modifiers string | array | object | null
mixins string | array | object | null

Examples

let _abem = abem()
_abem('o-animal', 'elephant')
// "o-animal__elephant"
 
_abem('o-animal', 'elephant', ['mod1', 'mod2'])
// "o-animal__elephant -mod1 -mod2"
 
_abem('o-animal', 'elephant', { mod1: true, mod2: false }, ['mix'])
// "o-animal__elephant -mod1 mix"
 
_abem('o-animal', null, null, { mix: true })
// "o-animal mix"
 
_abem = abem({ separators: { element: '___', modifier: '--' } })
_abem('o-animal', 'elephant', 'mod')
// "o-animal___elephant --mod"

Send some love

You like this package?

Buy me a coffee

Package Sidebar

Install

npm i abem

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

364 kB

Total Files

124

Last publish

Collaborators

  • gtournie