bem-sdk-archive / bem-decl

:capital_abcd: Manage declaration of BEM entities. DEPRECATED →
https://github.com/bem/bem-sdk/tree/master/packages/decl
Other
11 stars 3 forks source link

Format to BEMDECL v2 #77

Open skad0 opened 7 years ago

skad0 commented 7 years ago
const decl = require('@bem/decl');
const BemCell = require('@bem/cell');

const cells = [new BemCell({ entity: { block: 'button' }, tech: 'css'  })];

decl.format(cells, { format: 'v2' });

// [{ block: 'button' }]